-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuninstall.php
26 lines (21 loc) · 917 Bytes
/
uninstall.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* @package WilsonFeatures
*/
/**
* Trigger this file on plugin install
*/
/*-------------------------------------------------------------------------*/
/* SECURITY CHECK */
/*-------------------------------------------------------------------------*/
if(! defined('WP_UNINSTALL_PLUGIN')){
die;
}
/*-------------------------------------------------------------------------*/
/* CLEAR DATABASE DATA */
/*-------------------------------------------------------------------------*/
//Access database via SQL
global $wpdb;
$wpdb->query("DELETE FROM wp_posts WHERE post_type = 'product'");
$wpdb->query("DELETE FROM wp_posts_meta WHERE post_id NOT IN (SELECT ID FROM wp_posts)");
$wpdb->query("DELETE FROM wp_term_relationships WHERE object_id NOT IN (SELECT ID FROM wp_posts)");