Plugin Directory


Ignore:
Timestamp:
11/24/2025 12:11:34 AM (4 months ago)
Author:
martin7ba
Message:

Major updates and Gutenberg compatible plugin added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • whp-hide-posts/trunk/uninstall.php

    r3331355 r3401474  
    1212delete_option( 'whp_enabled_post_types' );
    1313delete_option( 'whp_db_version' );
     14delete_option( 'whp_data_migrated' );
     15delete_option( 'whp_data_migrated_notice_closed' );
     16delete_option( 'whp_disable_hidden_on_column' );
    1417
    1518global $wpdb;
    16 $table_name = $wpdb->prefix . 'whp_posts_visibility';
     19$table_name = esc_sql( $wpdb->prefix . 'whp_posts_visibility' );
    1720$wpdb->query( "DELETE FROM {$wpdb->prefix}postmeta WHERE meta_key LIKE '_whp_hide_on_%'" );
    1821$wpdb->query( "DROP TABLE IF EXISTS $table_name" );
Note: See TracChangeset for help on using the changeset viewer.