1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-12-22 11:53:53 +02:00
WordPress-Plugin-Boilerplate/plugin-name/uninstall.php
2013-05-16 09:40:25 -04:00

18 lines
No EOL
389 B
PHP

<?php
/**
* Fired when the plugin is uninstalled.
*
* @package PluginName
* @author Your Name <email@example.com>
* @license GPL-2.0+
* @link example.com
* @copyright 2013 Your Name or Company Name
* @version 1.0.0
*/
// If uninstall, not called from WordPress, then exit
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
// TODO: Define uninstall functionality here