# multi-device-switcher/1.4.0/uninstall.php

Multi Device Switcher, version 1.4.0. 13 lines.

- Page: https://pluginprobe.com/plugins/multi-device-switcher/1.4.0/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/multi-device-switcher/1.4.0/raw/uninstall.php
- Modified: 2015-01-21T06:24:36+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/multi-device-switcher/1.4.0/code/uninstall.php#L10-L20`.

```php
<?php

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

function multi_device_switcher_delete_plugin() {
	delete_option( 'multi_device_switcher_options' );
}

multi_device_switcher_delete_plugin();

?>
```
