PluginProbe
WebberZone Top 10 — Popular Posts / 1.6
WebberZone Top 10 — Popular Posts v1.6
4.5.1 4.5.0 4.4.3 4.4.2 4.4.1 4.4.0 4.3.4 4.3.3 4.3.2 4.3.1 4.3.0 trunk 1.0 1.0.1 1.1 1.2 1.3 1.4 1.4.1 1.5 1.5.1 1.5.2 1.5.3 1.6 1.6.1 All 117 releases
top-10 / uninstall.php

uninstall.php in WebberZone Top 10 — Popular Posts 1.6, at uninstall.php

15 lines 411 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( !defined('ABSPATH') && !defined('WP_UNINSTALL_PLUGIN') ) {
3 exit();
4 }
5 global $wpdb;
6 $table_name = $wpdb->prefix . "top_ten";
7 $table_name_daily = $wpdb->prefix . $table_name."_daily";
8
9 $sql = "DROP TABLE $table_name";
10 $wpdb->query($sql);
11 $sql = "DROP TABLE $table_name_daily";
12 $wpdb->query($sql);
13 delete_option('ald_tptn_settings');
14 delete_option('tptn_db_version');
15 ?>