first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
* Uninstall cleanup.
|
||||
*
|
||||
* @package Blocksy_Light_Dark_Toggle
|
||||
*/
|
||||
|
||||
defined( 'WP_UNINSTALL_PLUGIN' ) || exit;
|
||||
|
||||
delete_option( 'blc_ldt_settings' );
|
||||
|
||||
global $wpdb;
|
||||
|
||||
$wpdb->query(
|
||||
$wpdb->prepare(
|
||||
"DELETE FROM {$wpdb->usermeta} WHERE meta_key = %s",
|
||||
'blc_ldt_scheme'
|
||||
)
|
||||
);
|
||||
Reference in New Issue
Block a user