mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
Merge pull request #453 from Ipstenu/Ipstenu-rtfm
Documentation update for Plugin Version constant. Thank you @Ipstenu
This commit is contained in:
commit
bc3e07be2a
2 changed files with 11 additions and 2 deletions
|
@ -20,9 +20,13 @@ The WordPress Plugin Boilerplate includes the following files:
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
The Boilerplate can be installed directly into your plugins folder "as-is". You will want to rename it and the classes inside of it to fit your needs.
|
The Boilerplate can be installed directly into your plugins folder "as-is". You will want to rename it and the classes inside of it to fit your needs. For example, if your plugin is named 'example-me' then:
|
||||||
|
|
||||||
Note that this will activate the source code of the Boilerplate, but because the Boilerplate has no real functionality there will be no menu items, meta boxes, or custom post types added.
|
* rename files from `plugin_name` to `example_me`
|
||||||
|
* change `plugin_name` to `example_me`
|
||||||
|
* change `PLUGIN_NAME_` to `EXAMPLE_ME_`
|
||||||
|
|
||||||
|
It's safe to activate the plugin at this point. Because the Boilerplate has no real functionality there will be no menu items, meta boxes, or custom post types added until you write the code.
|
||||||
|
|
||||||
## WordPress.org Preparation
|
## WordPress.org Preparation
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,11 @@ if ( ! defined( 'WPINC' ) ) {
|
||||||
die;
|
die;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Currently pligin version.
|
||||||
|
* Start at version 1.0.0 and use SemVer - https://semver.org
|
||||||
|
* Rename this for your plugin and update it as you release new versions.
|
||||||
|
*/
|
||||||
define( 'PLUGIN_NAME_VERSION', '1.0.0' );
|
define( 'PLUGIN_NAME_VERSION', '1.0.0' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue