wpfront-scroll-top
Last commit date
classes
9 years ago
css
9 years ago
images
9 years ago
jquery-plugins
9 years ago
js
9 years ago
languages
9 years ago
templates
9 years ago
license.txt
9 years ago
readme.txt
8 years ago
uninstall.php
9 years ago
wpfront-scroll-top.php
9 years ago
uninstall.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | if (!defined('WP_UNINSTALL_PLUGIN')) { |
| 4 | exit(); |
| 5 | } |
| 6 | |
| 7 | $option_name = 'wpfront-scroll-top-options'; |
| 8 | |
| 9 | delete_option($option_name); |
| 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 |