Files
wordpress-preseed/wp-content/plugins/wp-recaptcha/uninstall.php
2019-10-24 00:12:05 +02:00

15 lines
332 B
PHP

<?php
// this is the uninstall handler
// include unregister_setting, delete_option, and other uninstall behavior here
require_once('wp-plugin.php');
function uninstall_options($name) {
unregister_setting("${name}_group", $name);
WPPlugin::remove_options($name);
}
// recaptcha
uninstall_options('recaptcha_options');
?>