Skip to content

Instantly share code, notes, and snippets.

@jfarsen
Created August 9, 2017 01:37
Show Gist options
  • Save jfarsen/beab40491848dc161436eaa6a86b95f2 to your computer and use it in GitHub Desktop.
Save jfarsen/beab40491848dc161436eaa6a86b95f2 to your computer and use it in GitHub Desktop.
Remove Divi shortcodes from content
<?php
/**
* Remove Divi shortcodes from content
*
* @see http://victorfont.com/remove-divi-shortcodes-changing-themes/
*/
function remove_divi_shortcodes( $content ) {
$content = preg_replace('/\[\/?et_pb.*?\]/', '', $content);
return $content;
}
@rmdes
Copy link

rmdes commented Sep 17, 2019

This plugins works really well. best solutions so far to move away from Divi/Avada etc..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment