Files
dostavka_vodi/wp-content/plugins/!clearfy/components/html-minify/uninstall.php
User A0264400 a766acdc90 first commit
2026-04-01 23:20:16 +03:00

25 lines
476 B
PHP

<?php
// if uninstall.php is not called by WordPress, die
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
die;
}
// remove plugin options
global $wpdb;
if ( ! function_exists( 'is_plugin_active_for_network' ) ) {
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
}
if ( is_multisite() ) {
$wpdb->query( "DELETE FROM {$wpdb->sitemeta} WHERE meta_key LIKE 'wbcr_htm_%';" );
}
$wpdb->query( "DELETE FROM {$wpdb->options} WHERE option_name LIKE 'wbcr_htm_%';" );