drop table when plugin uninstall wordpress plugin
============drop table when plugin uninstall=======
register_deactivation_hook(__FILE__, 'custom_plugin_drop_table' );
function custom_plugin_drop_table(){
global $wpdb;
$wpdb->query("DROP table IF Exists wp_custom_table ");
}
..................................
No comments