wp/wp-content/plugins/codecanyon-3027163-content-timeline-responsive-wordpress-plugin/uninstall.php
author ymh <ymh.work@gmail.com>
Mon, 14 Oct 2019 18:30:03 +0200
changeset 10 372f2766ea20
parent 0 d970ebf37754
permissions -rwxr-xr-x
update themes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<?php 
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
if( !defined( 'ABSPATH') && !defined('WP_UNINSTALL_PLUGIN') )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
	exit();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
global $wpdb;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
$sliders_table = $wpdb->base_prefix . 'ctimelines';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
$wpdb->query( "DROP TABLE $sliders_table" );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
?>