PluginProbe
Mark Posts / 2.2.0
Mark Posts v2.2.0
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 2.0.0 2.0.1 2.1.0 2.2.0 2.2.1 2.2.2 2.2.3 All 28 releases
mark-posts / uninstall.php

uninstall.php in Mark Posts 2.2.0, at uninstall.php

22 lines 373 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Fired when the plugin is uninstalled.
4 *
5 * @author Michael Schoenrock <hello@michaelschoenrock.com>
6 * @license GPL-2.0+
7 */
8
9 // If uninstall not called from WordPress, then exit
10 if (!defined('WP_UNINSTALL_PLUGIN')) {
11 exit;
12 }
13
14 // unregister plugin settings
15
16 function unregister_plugin()
17 {
18 register_taxonomy('marker', []);
19 }
20
21 unregister_plugin();
22