core-web-vitals-pagespeed-booster
Last commit date
css-extractor
3 years ago
images
3 years ago
includes
3 years ago
languages
3 years ago
core-web-vitals-pagespeed-booster.php
3 years ago
readme.txt
3 years ago
uninstall.php
3 years ago
uninstall.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | defined( 'WP_UNINSTALL_PLUGIN' ) || exit; |
| 4 | |
| 5 | if ( ! defined( 'CWVPSB_CACHE_DIR' ) ) { |
| 6 | define( 'CWVPSB_CACHE_DIR', WP_CONTENT_DIR. '/cache/cwvpsb/static/' ); |
| 7 | } |
| 8 | |
| 9 | if ( ! defined( 'CWVPSB_IMAGE_DIR' ) ) { |
| 10 | define('CWVPSB_IMAGE_DIR',plugin_dir_url(__FILE__).'images/'); |
| 11 | } |
| 12 | |
| 13 | global $wpdb, $table_prefix; |
| 14 | $cached_table = $table_prefix . 'cwvpb_critical_urls'; |
| 15 | $wpdb->query("DROP TABLE `$cached_table`"); |