# content-control/2.0.12/uninstall.php

Content Control – The Ultimate Content Restriction Plugin! Restrict Content, Create Conditional Blocks &amp; More, version 2.0.12. 28 lines.

- Page: https://pluginprobe.com/plugins/content-control/2.0.12/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/content-control/2.0.12/raw/uninstall.php
- Modified: 2023-09-21T10:13:04+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/content-control/2.0.12/code/uninstall.php#L10-L20`.

```php
<?php
/**
 * Content Control Uninstall File
 *
 * @package ContentControl
 */

namespace ContentControl;

/**
 * Uninstall Content Control
 *
 * @return void
 */
function remove_wp_options_data() {
	$keys = [
		'content_control_license',
		'content_control_pro_activation_date',
		'content_control_installed_on',
		'content_control_connect_token',
		'content_control_version',
		'content_control_data_versioning',
		'content_control_debug_log_token', // delete log first.
		'content_control_known_blockTypes',
		'content_control_completed_upgrades',
	];
}

```
