Skip to content

Instantly share code, notes, and snippets.

@ArtfulPussycat
Last active December 29, 2016 16:15
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 ArtfulPussycat/63d15aad76572d2efde4f2c5f3464adb to your computer and use it in GitHub Desktop.
Save ArtfulPussycat/63d15aad76572d2efde4f2c5f3464adb to your computer and use it in GitHub Desktop.
Clean up DIVI shortcodes when switching to another themeFrom https://divi.space/divi-tutorials/lets-talk-about-removing-the-divi-shortcodes/
function goodbye_divi_shortcode () {
$clean_content = get_the_content();
$clean_content = preg_replace('/\[\/?et_pb.*?\]/','', $clean_content);
return $clean_content;
}
add_filter('the_content', 'goodbye_divi_shortcode', 99, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment