diff --git a/README.md b/README.md index e77341f..57ba67c 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Instead, the options are: ### Copying a Directory 1. Copy the `trunk` directory into your `wp-content/plugins` directory. You may wish to rename this to something else. -2. In the WordPress dashboard, navigation to the *Plugins* page +2. In the WordPress admin area, navigation to the *Plugins* page Locate the menu item that reads “The WordPress Plugin Boilerplate.” 3. Click on *Activate.* @@ -37,7 +37,7 @@ Locate the menu item that reads “The WordPress Plugin Boilerplate.” 1. Copy the `WordPress-Plugin-Boilerplate` directory into your `wp-content/plugins` directory. 2. Create a symbolic link between the `trunk` directory and the plugin. For example: `ln -s plugin-name/trunk /path/to/wordpress/wp-content/plugins/plugin-name` -3. In the WordPress dashboard, navigation to the *Plugins* page +3. In the WordPress admin area, navigation to the *Plugins* page Locate the menu item that reads “The WordPress Plugin Boilerplate.” 4. Click on *Activate.* @@ -45,7 +45,7 @@ Locate the menu item that reads “The WordPress Plugin Boilerplate.” 1. Copy the `WordPress-Plugin-Boilerplate` directory into your `wp-content/plugins` directory. 2. Create a symbolic link between the `trunk` directory and the plugin. For example: `mklink /J path\to\wp-content\plugins \path\to\WordPress-Plugin-Boilerplate\trunk\plugin-name` -3. In the WordPress dashboard, navigation to the *Plugins* page +3. In the WordPress admin area, navigation to the *Plugins* page Locate the menu item that reads “The WordPress Plugin Boilerplate.” 4. Click on *Activate.* @@ -89,8 +89,8 @@ For reference, [here's a discussion](http://make.wordpress.org/themes/2013/03/04 Note that if you include your own classes, or third-party libraries, there are three locations in which said files may go: -* `plugin-name/includes` is where functionality shared between the dashboard and the public-facing parts of the side reside -* `plugin-name/admin` is for all dashboard-specific functionality +* `plugin-name/includes` is where functionality shared between the admin area and the public-facing parts of the site reside +* `plugin-name/admin` is for all admin-specific functionality * `plugin-name/public` is for all public-facing functionality Note that previous versions of the Boilerplate did not include `Plugin_Name_Loader` but this class is used to register all filters and actions with WordPress. diff --git a/plugin-name/trunk/admin/class-plugin-name-admin.php b/plugin-name/trunk/admin/class-plugin-name-admin.php index 25944dc..3ef8d60 100644 --- a/plugin-name/trunk/admin/class-plugin-name-admin.php +++ b/plugin-name/trunk/admin/class-plugin-name-admin.php @@ -1,7 +1,7 @@