first commit

This commit is contained in:
2026-06-18 16:00:11 +02:00
parent 89a15f06ad
commit efe73b79c8
10 changed files with 1370 additions and 0 deletions
+19
View File
@@ -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'
)
);