* @license http://www.gnu.org/licenses/ GNU General Public License * @link https://thefoxe.com/products/404-to-301 */ // Deletes plugin options $options = array( 'i4t3_gnrl_options', 'i4t3_db_version', 'i4t3_version_no', 'i4t3_agreement' ); foreach ( $options as $option ) { if ( get_option( $option ) ) { delete_option( $option ); } } global $wpdb; // drop our custom table $wpdb->query( "DROP TABLE IF EXISTS " . $wpdb->prefix . "404_to_301" ); /******* The end. Thanks for using 404 to 301 plugin ********/