mirror of
https://ghproxy.net/https://github.com/elementor/wp2static-addon-netlify.git
synced 2025-10-04 04:21:51 +08:00
12 lines
251 B
PHP
12 lines
251 B
PHP
<?php
|
|
|
|
// If uninstall not called from WordPress, then exit.
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|
exit;
|
|
}
|
|
|
|
global $wpdb;
|
|
|
|
$table_name = $wpdb->prefix . 'wp2static_addon_netlify_options';
|
|
|
|
$wpdb->query( "DROP TABLE IF EXISTS $table_name" );
|