Created
January 4, 2020 12:56
-
-
Save Pross/b810dede5588bb1e3fdcebac445943c0 to your computer and use it in GitHub Desktop.
Revisions
-
Pross created this gist
Jan 4, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ <?php /* Plugin Name: Beaver Builder Global JS Reset Description: Resets global JS and self deactivates. Author: <Simon> Version: 1.0 */ class BB_Global_JS_Reset { function __construct() { include_once ABSPATH . '/wp-admin/includes/plugin.php'; $settings = get_option( '_fl_builder_settings' ); $settings->js = ''; update_option( '_fl_builder_settings', $settings ); deactivate_plugins( plugin_basename( __FILE__ ) ); wp_die( 'Global JS has been reset.', 'Global JS Reset', array( 'link_text' => 'Back to dashboard', 'link_url' => admin_url(), ) ); } } new BB_Global_JS_Reset;