Created
March 7, 2012 22:46
-
-
Save jbreitenbucher/1996832 to your computer and use it in GitHub Desktop.
WordPress: Plugin Header Boilerplate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
error_reporting(E_ALL); | |
/* | |
Plugin Name: __pluginname__ | |
Plugin URI: http://orthogonalcreations.com | |
Description: __description__ | |
Author: Jon Breitenbucher | |
Author URI: http://orthogonalcreations.com | |
Version: __version__ | |
License: GNU General Public License v2.0 (or later) | |
License URI: http://www.opensource.org/licenses/gpl-license.php | |
*/ | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks