PluginProbe
Unique Headers / trunk
Unique Headers vtrunk
2.1.3 2.1 2.1.1 2.0.1 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1 1.2 1.2.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.7 1.3.8 1.3.9 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 All 54 releases
unique-headers / uninstall.php

uninstall.php in Unique Headers trunk, at uninstall.php

18 lines 373 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /*
4 * Uninstaller script
5 * Only runs when the plugin is being uninstalled via the WordPress admin panel
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 die( 'What you doin?' );
10 }
11
12 // Remove options
13 delete_option( 'spam-destroyer-stats' );
14 delete_option( 'spam-destroyer-key' );
15 delete_option( 'spam-destroyer-version' );
16 delete_option( 'spam-destroyer-gd-notice-removed' );
17
18