diff --git a/plugin-name.php b/plugin-name.php index d39f3ed..eb04549 100644 --- a/plugin-name.php +++ b/plugin-name.php @@ -6,7 +6,7 @@ * @author Your Name * @license GPL-2.0+ * @link http://example.com - * @copyright 2013 Your Name or Company Name + * @copyright 2014 Your Name or Company Name * * @wordpress-plugin * Plugin Name: @TODO diff --git a/uninstall.php b/uninstall.php new file mode 100644 index 0000000..106f74e --- /dev/null +++ b/uninstall.php @@ -0,0 +1,17 @@ + +* @license GPL-2.0+ +* @link http://example.com +* @copyright 2014 Your Name or Company Name +*/ + +// If uninstall not called from WordPress, then exit +if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { + exit; +} + +// @TODO: Define uninstall functionality here