mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
17 lines
276 B
PHP
17 lines
276 B
PHP
<?php
|
|
/**
|
|
* @TODO
|
|
* Short Description (no period for file headers)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @link URL
|
|
* @since x.x.x (if available)
|
|
*
|
|
* @package TODO
|
|
*/
|
|
|
|
// If uninstall not called from WordPress, then exit.
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|
exit;
|
|
}
|