Skip to content

Instantly share code, notes, and snippets.

@eduard-ungureanu
Created February 13, 2023 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eduard-ungureanu/814557e1baf0332bcc99289cd50b014e to your computer and use it in GitHub Desktop.
Save eduard-ungureanu/814557e1baf0332bcc99289cd50b014e to your computer and use it in GitHub Desktop.
Clear Divi's Presets History
<?
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