1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-19 03:32:11 +03:00

updating the docblocks with clearer descriptions as to what each tag and line should contain.

This commit is contained in:
Tom McFarlin 2014-05-03 15:07:24 -04:00
parent 4114ad703e
commit 135920036b

View file

@ -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' ) );