From 5c34f2fe327035784c1728572c9d281c9cb53147 Mon Sep 17 00:00:00 2001 From: Yorick Brown Date: Tue, 21 May 2019 22:17:36 +0200 Subject: [PATCH] Make text more readable (#14839) * Make text more readable * small text fix --- .../tutorials/javascript/plugins-background.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/designers-developers/developers/tutorials/javascript/plugins-background.md b/docs/designers-developers/developers/tutorials/javascript/plugins-background.md index 91a6ee302fe758..b7a20750855d7f 100644 --- a/docs/designers-developers/developers/tutorials/javascript/plugins-background.md +++ b/docs/designers-developers/developers/tutorials/javascript/plugins-background.md @@ -1,8 +1,12 @@ # Plugins Background -The primary means of extending WordPress is the plugin. WordPress' [Plugin Basics](https://developer.wordpress.org/plugins/the-basics/) documentation provides for more details on building a plugin. The quickest way to start is to create a new directory in `wp-content/plugins/` to hold your plugin code, for this example you can call it `myguten-plugin`. +The primary means of extending WordPress is the plugin. The WordPress [Plugin Basics](https://developer.wordpress.org/plugins/the-basics/) documentation provides details on building a plugin. -Inside of this new directory, create a file called `myguten-plugin.php` which is the server-side code that runs when your plugin is active. For now place the following in that file: +The quickest way to start is to create a new directory in `wp-content/plugins/` to contain your plugin code. For this example, call it `myguten-plugin`. + +Inside this new directory, create a file called `myguten-plugin.php`. This is the server-side code that runs when your plugin is active. + +For now, add the following code in the file: ```php