| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) || exit; |
| 4 |
|
| 5 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 6 |
exit; |
| 7 |
} |
| 8 |
|
| 9 |
// Subscriber storage options (current and legacy names). |
| 10 |
delete_option( 'blockenberg_newsletter_subscribers' ); |
| 11 |
delete_option( 'blockenberg_subscribers' ); |
| 12 |
|
| 13 |
// Block Manager — disabled blocks list. |
| 14 |
delete_option( 'blockenberg_disabled_blocks' ); |
| 15 |
|