mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-05 21:32:26 +02:00
9f71476166
http://make.wordpress.org/core/handbook/inline-documentation-standards/php-documentation-standards/ Signed-off-by: Tom McFarlin <tom@tommcfarlin.com>
18 lines
293 B
PHP
18 lines
293 B
PHP
<?php
|
|
/**
|
|
* Short Description (no period for file headers)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @link URL
|
|
* @since x.x.x (if available)
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Component
|
|
*/
|
|
|
|
// If uninstall not called from WordPress, then exit.
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|
exit;
|
|
}
|