mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-05 13:22:58 +02:00
17 lines
273 B
PHP
17 lines
273 B
PHP
<?php
|
|
|
|
/**
|
|
* Short Description (no period for file headers)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @package Plugin_Name
|
|
* @link http://example.com
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
// If uninstall not called from WordPress, then exit.
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|
exit;
|
|
}
|