PluginProbe ʕ •ᴥ•ʔ
WPFront Scroll Top / 2.1
WPFront Scroll Top v2.1
1.5 1.6 1.6.1 1.6.2 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1 2.1.1 2.2 3.0.0 3.0.1 trunk 1.0 1.0.1 1.1 1.1.1 1.2 1.3 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5
wpfront-scroll-top / uninstall.php
wpfront-scroll-top Last commit date
classes 2 years ago css 2 years ago images 2 years ago js 2 years ago languages 2 years ago templates 2 years ago index.php 2 years ago license.txt 2 years ago phpstan-bootstrap.php 2 years ago readme.txt 2 years ago uninstall.php 2 years ago wpfront-scroll-top.php 2 years ago
uninstall.php
15 lines
1 <?php
2
3 if (defined('WP_UNINSTALL_PLUGIN')) {
4 $option_name = 'wpfront-scroll-top-options';
5
6 delete_option($option_name);
7 }
8
9
10
11 //TODO: Multisite delete
12 //http://codex.wordpress.org/Function_Reference/register_uninstall_hook
13 //http://wordpress.org/support/topic/how-can-i-remove-an-option-from-all-option-tables-in-multisite
14
15