# ultimate-markdown/trunk/uninstall.php

Ultimate Markdown – Markdown Editor, Importer, &amp; Exporter, version trunk. 18 lines.

- Page: https://pluginprobe.com/plugins/ultimate-markdown/trunk/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/ultimate-markdown/trunk/raw/uninstall.php
- Modified: 2025-12-21T11:39:50+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/ultimate-markdown/trunk/code/uninstall.php#L10-L20`.

```php
<?php
/**
 * Uninstall plugin.
 *
 * @package ultimate-markdown
 */

// Exit if this file is called outside WordPress.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	die();
}

require_once plugin_dir_path( __FILE__ ) . 'shared/class-daextulma-shared.php';
require_once plugin_dir_path( __FILE__ ) . 'admin/class-daextulma-admin.php';

// Delete options and tables.
Daextulma_Admin::un_delete();

```
