1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2025-04-19 05:35:36 +03:00

Making the file headers more conssitent

Improving the documentation for each file, as well.

Fix #193
This commit is contained in:
Tom McFarlin 2014-07-30 15:16:32 -04:00
parent 43ee54a0ee
commit 57205587af
5 changed files with 59 additions and 55 deletions

View file

@ -1,15 +1,24 @@
<?php
/**
* Register all actions and filters
* Register all actions and filters for the plugin
*
* @link http://example.com
* @since 1.0.0
*
* @package Plugin_Name
* @subpackage Plugin_Name/includes
*/
/**
* Register all actions and filters for the plugin.
*
* Maintains them in a list as defined in the core plugin file and then
* registers them with WordPress when the plugin begins execution.
*
* @package Plugin_Name
* @subpackage Plugin_Name/includes
* @author Your Name <email@example.com>
* @license GPL-2.0+
* @link http://example.com
* @copyright 2014 Your Name or Company Name
* @since 1.0.0
*/
/**