mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-10 15:52:06 +02:00
10 lines
No EOL
200 B
PHP
10 lines
No EOL
200 B
PHP
<?php
|
|
/**
|
|
* Fired when the plugin is uninstalled.
|
|
*/
|
|
|
|
// If uninstall, not called from WordPress exit
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) )
|
|
exit();
|
|
|
|
// TODO: Define uninstall functionality here
|