# user-submitted-posts/trunk/uninstall.php

User Submitted Posts – Enable Users to Submit Posts from the Front End, version trunk. 7 lines.

- Page: https://pluginprobe.com/plugins/user-submitted-posts/trunk/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/user-submitted-posts/trunk/raw/uninstall.php
- Modified: 2025-04-07T14:36:16+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/user-submitted-posts/trunk/code/uninstall.php#L10-L20`.

```php
<?php // uninstall remove options

if(!defined('ABSPATH') && !defined('WP_UNINSTALL_PLUGIN')) exit();

// delete options
delete_option('usp_options');
delete_option('user-submitted-posts-dismiss-notice');
```
