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 /** * Uninstall plugin * * @author Your Inspiration Themes * @package YITH WooCommerce Wishlist * @version 1.1.5 */
// If uninstall not called from WordPress exit if( !defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit; }
global $wpdb; // Delete option from options table delete_option( 'yith_wcwl_version' ); delete_option( 'yith_wcwl_db_version' );
//delete pages created for this plugin wp_delete_post( get_option( 'yith-wcwl-pageid' ), true );
//remove any additional options and custom table $sql = "DROP TABLE `" . YITH_WCWL_TABLE . "`"; $wpdb->query( $sql ); ?>
|