# blockenberg/2.0.7/uninstall.php

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 12 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/uninstall.php
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/uninstall.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || exit;

if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
    exit;
}

// Subscriber storage options (current and legacy names).
delete_option( 'blockenberg_newsletter_subscribers' );
delete_option( 'blockenberg_subscribers' );

```
