Changeset 3401474 for whp-hide-posts/trunk/uninstall.php
- Timestamp:
- 11/24/2025 12:11:34 AM (4 months ago)
- File:
-
- 1 edited
-
whp-hide-posts/trunk/uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
whp-hide-posts/trunk/uninstall.php
r3331355 r3401474 12 12 delete_option( 'whp_enabled_post_types' ); 13 13 delete_option( 'whp_db_version' ); 14 delete_option( 'whp_data_migrated' ); 15 delete_option( 'whp_data_migrated_notice_closed' ); 16 delete_option( 'whp_disable_hidden_on_column' ); 14 17 15 18 global $wpdb; 16 $table_name = $wpdb->prefix . 'whp_posts_visibility';19 $table_name = esc_sql( $wpdb->prefix . 'whp_posts_visibility' ); 17 20 $wpdb->query( "DELETE FROM {$wpdb->prefix}postmeta WHERE meta_key LIKE '_whp_hide_on_%'" ); 18 21 $wpdb->query( "DROP TABLE IF EXISTS $table_name" );
Note: See TracChangeset
for help on using the changeset viewer.