mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2025-04-19 05:35:36 +03:00
renaming 'plugin-boilerplate' to 'plugin-name' to be more consistent with the naming conventions of the class file
related #48
This commit is contained in:
parent
bc86970807
commit
373531d393
15 changed files with 0 additions and 0 deletions
18
plugin-name/uninstall.php
Normal file
18
plugin-name/uninstall.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
/**
|
||||
* Fired when the plugin is uninstalled.
|
||||
*
|
||||
* @package PluginName
|
||||
* @author TODO
|
||||
* @license GPL-2.0+
|
||||
* @link TODO
|
||||
* @version 1.0.0
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
// If uninstall, not called from WordPress, then exit
|
||||
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
// TODO: Define uninstall functionality here
|
Loading…
Add table
Add a link
Reference in a new issue