PluginProbe ʕ •ᴥ•ʔ
Core Web Vitals & PageSpeed Booster / 1.0.9
Core Web Vitals & PageSpeed Booster v1.0.9
trunk 1.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 1.0.25 1.0.26 1.0.27 1.0.28 1.0.29 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.7.1 1.0.7.2 1.0.8 1.0.9
core-web-vitals-pagespeed-booster / uninstall.php
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`");