PluginProbe
Mark Posts / 2.2.5
Mark Posts v2.2.5
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.5, at uninstall.php

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