mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
updating the docblocks with clearer descriptions as to what each tag and line should contain.
This commit is contained in:
parent
4114ad703e
commit
135920036b
1 changed files with 11 additions and 11 deletions
|
@ -5,17 +5,19 @@
|
||||||
*
|
*
|
||||||
* Long Description.
|
* Long Description.
|
||||||
*
|
*
|
||||||
* @link URL
|
* @package Plugin_Name
|
||||||
* @since x.x.x (if available)
|
* @author Your Name or Company Name <email@domain.com>
|
||||||
* @package TODO
|
* @license GPL-2.0+
|
||||||
|
* @link http://exmaple.com/plugin-name
|
||||||
|
* @copyright 2014 Your Name or Company Name
|
||||||
*
|
*
|
||||||
* @wordpress-plugin
|
* @wordpress-plugin
|
||||||
* Plugin Name: TODO
|
* Plugin Name: Plugin Name
|
||||||
* Plugin URI: TODO
|
* Plugin URI: http://example.com/plugin-name
|
||||||
* Description: TODO
|
* Description: This is a short description of what the plugin does. It's displayed in the WordPress dashboard.
|
||||||
* Version: TODO
|
* Version: 1.0.0
|
||||||
* Author: TODO
|
* Author: Your Name or Your Company
|
||||||
* Author URI: TODO
|
* Author URI: http://example.com
|
||||||
* Text Domain: plugin-name-locale
|
* Text Domain: plugin-name-locale
|
||||||
* License: GPL-2.0+
|
* License: GPL-2.0+
|
||||||
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
||||||
|
@ -47,5 +49,3 @@ register_activation_hook( __FILE__, array( 'Plugin_Name_Activator', 'activate' )
|
||||||
|
|
||||||
/** This action is documented in includes/class-plugin-name-deactivator.php */
|
/** This action is documented in includes/class-plugin-name-deactivator.php */
|
||||||
register_activation_hook( __FILE__, array( 'Plugin_Name_Deactivator', 'deactivate' ) );
|
register_activation_hook( __FILE__, array( 'Plugin_Name_Deactivator', 'deactivate' ) );
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue