Skip to content

Instantly share code, notes, and snippets.

@danielpowney
Created February 1, 2017 22:11
Show Gist options
  • Save danielpowney/48126a200eb2a7e4607788eb4d136ce5 to your computer and use it in GitHub Desktop.
Save danielpowney/48126a200eb2a7e4607788eb4d136ce5 to your computer and use it in GitHub Desktop.
<?php
function strip_shortcode_from_excerpt( $content ) {
$content = strip_shortcodes( $content );
return $content;
}
add_filter('the_excerpt', 'strip_shortcode_from_excerpt');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment