From 6f39dbc677d37dbd679ce9fe4af5a9ccc2ff0475 Mon Sep 17 00:00:00 2001 From: Tom McFarlin Date: Wed, 15 May 2013 10:13:11 -0400 Subject: [PATCH] since we're loading a single style sheet, using the singular form of the term related #48 --- plugin-name/class-plugin-name.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin-name/class-plugin-name.php b/plugin-name/class-plugin-name.php index bbcc2dc..3e88f30 100644 --- a/plugin-name/class-plugin-name.php +++ b/plugin-name/class-plugin-name.php @@ -71,11 +71,11 @@ class PluginName { // Add the options page and menu item. // add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) ); - // Load admin stylesheets and JavaScript. + // Load admin style sheet and JavaScript. add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) ); add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_scripts' ) ); - // Load public-facing stylesheets and JavaScript. + // Load public-facing style sheet and JavaScript. add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) ); add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); @@ -139,7 +139,7 @@ class PluginName { } /** - * Register and enqueue admin-specific stylesheets. + * Register and enqueue admin-specific style sheet. * * @since 1.0.0 * @@ -179,7 +179,7 @@ class PluginName { } /** - * Register and enqueue public-facing stylesheets. + * Register and enqueue public-facing style sheet. * * @since 1.0.0 */