Created
February 13, 2023 10:46
-
-
Save eduard-un/814557e1baf0332bcc99289cd50b014e to your computer and use it in GitHub Desktop.
Clear Divi's Presets History
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 characters
<? | |
add_action('after_setup_theme', function(){ | |
if ( isset( $_GET['delete_global_presets'] ) ) { | |
delete_option( 'et_divi_builder_global_presets_history_ng' ); | |
delete_option( 'et_divi_builder_global_presets_ng' ); | |
die('Global Presets Deleted! :diviboom:'); | |
} | |
}, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment