Files
Festive-Seasons-Pro/uninstall.php
2025-12-10 09:30:35 +00:00

14 lines
340 B
PHP

<?php
// uninstall.php
if (!defined('WP_UNINSTALL_PLUGIN')) {
exit;
}
// Alle Optionen löschen
delete_option('fsp_events');
delete_option('fsp_music_consent');
$fixed_events_keys = ['advent', 'christmas', 'newyear', 'halloween', 'easter'];
foreach ($fixed_events_keys as $key) {
delete_option("fsp_fixed_{$key}");
}