Skip to content

Instantly share code, notes, and snippets.

@bigdigital
Last active December 21, 2017 00:25
Show Gist options
  • Save bigdigital/bd9a915381ac4409b5ebd05c5a3289dc to your computer and use it in GitHub Desktop.
Save bigdigital/bd9a915381ac4409b5ebd05c5a3289dc to your computer and use it in GitHub Desktop.
The7 remove VC from excerpts
function remove_vc_from_excerpt( $excerpt ) {
$patterns = "/\[[\/]?vc_[^\]]*\]/";
$replacements = "";
return preg_replace($patterns, $replacements, $excerpt);
}
function custom_content($content) {
$content = get_the_content( '' );
$content = remove_vc_from_excerpt( $content );
$content = strip_shortcodes( $content );
return $content;
}
add_filter( 'the_content', 'custom_content', 30);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment