PluginProbe ʕ •ᴥ•ʔ
WP Create Multiple Posts & Pages / 2.0.4
WP Create Multiple Posts & Pages v2.0.4
trunk 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4
wp-create-multiple-posts-pages / uninstall.php
wp-create-multiple-posts-pages Last commit date
admin 1 month ago includes 1 month ago languages 1 month ago public 1 month ago README.md 1 month ago index.php 1 month ago license.txt 1 month ago readme.txt 1 month ago uninstall.php 1 month ago wp-create-multiple-posts-pages.php 1 month ago
uninstall.php
14 lines
1 <?php
2 /**
3 * Fired when the plugin is uninstalled.
4 *
5 * @since 2.0.0
6 * @package Wp_Create_Multi_Posts_Pages
7 * @author Sajjad Hossain Sagor <sagorh672@gmail.com>
8 */
9
10 // If uninstall not called from WordPress, then exit.
11 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
12 die;
13 }
14