1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2025-01-31 23:15:34 +02:00
WordPress-Plugin-Boilerplate/plugin-boilerplate/uninstall.php

14 lines
246 B
PHP
Raw Normal View History

<?php
/**
* Fired when the plugin is uninstalled.
*
* @package PluginName
* @since 1.0.0
*/
2013-05-07 17:02:04 -04:00
// If uninstall, not called from WordPress exit
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit();
}
// TODO: Define uninstall functionality here