# http-headers/1.12.1/uninstall.php

HTTP Headers, version 1.12.1. 12 lines.

- Page: https://pluginprobe.com/plugins/http-headers/1.12.1/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/http-headers/1.12.1/raw/uninstall.php
- Modified: 2017-12-24T19:16:22+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/http-headers/1.12.1/code/uninstall.php#L10-L20`.

```php
<?php
// If uninstall is not called from WordPress, exit
if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	exit();
}

include dirname(__FILE__) . '/views/includes/config.inc.php';

foreach ($options as $option)
{
	delete_option( $option );
}
```
