File: /home/ratbustersflorida/public_html/wp-content/plugins/remove-http/uninstall.php
<?php
/**
* Runs automatically when the plugin is deleted.
*
* @author Fact Maven
* @link https://wordpress.org/plugins/remove-http/
*/
# If uninstall is not called by WordPress, exit
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) exit;
# Remove options with the prefix "factmaven_rhttp"
foreach ( wp_load_alloptions() as $option => $value ) {
if ( strpos( $option, 'factmaven_rhttp' ) === 0 ) {
delete_option( $option );
}
}