# wp-display-header/7/uninstall.php

WP Display Header, version 7. 20 lines.

- Page: https://pluginprobe.com/plugins/wp-display-header/7/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/wp-display-header/7/raw/uninstall.php
- Modified: 2022-11-19T22:23:24+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/wp-display-header/7/code/uninstall.php#L10-L20`.

```php
<?php
/**
 * Uninstall.
 *
 * @package wp-display-header
 */

// Don't uninstall unless you absolutely want to!
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	wp_die( 'WP_UNINSTALL_PLUGIN undefined.' );
}

// Delete all meta data.
delete_option( 'wpdh_tax_meta' );
delete_metadata( 'post', 0, '_wpdh_display_header', '', true );
delete_metadata( 'user', 0, 'wp-display-header', '', true );


/* Goodbye! Thank you for having me! */

```
