Skip to content

Instantly share code, notes, and snippets.

@amberhinds
Created August 4, 2016 04:02
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 amberhinds/db44de490e8ec7c6a4963b193ab896e5 to your computer and use it in GitHub Desktop.
Save amberhinds/db44de490e8ec7c6a4963b193ab896e5 to your computer and use it in GitHub Desktop.
Remove Divi Shortcodes from WordPress Content
add_filter('the_content', 'remove_divi_shortcodes');
function remove_divi_shortcodes( $content ) {
$content = preg_replace('/\[\/?et_pb.*?\]/', '', $content);
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment