Skip to content

Commit 998db26

Browse files
committed
Small typo correction in how-to-create-custom-plugins.md
1 parent 797bbde commit 998db26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

how-to-create-custom-plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The main plugin file `wpcli-demo-plugin.php` is the starting point that we can u
4949

5050
Inside the main plugin file lets now reference the new post type we just created.
5151

52-
Open in your favourite text editor the file `wpcli-demo-plugin.php`
52+
Open in your favorite text editor the file `wpcli-demo-plugin.php`
5353
and under the line saying "your code starts here" add the following:
5454

5555
```
@@ -60,7 +60,7 @@ require('post-types/books.php');
6060
### Step 4 - Activate the plugin
6161

6262
You can now use two wp-cli commands to check the list of plugins and activate your newly created plugin.
63-
`wp plugin list` and `wp plugin activate`. The first command lists all plguins installed while the second
63+
`wp plugin list` and `wp plugin activate`. The first command lists all plugins installed while the second
6464
activates a given plugin.
6565

6666
```

0 commit comments

Comments
 (0)