Home › Forums › Pro Support › Hide sortcode from search results › Reply To: Hide sortcode from search results
June 4, 2019 at 3:24 pm
#9725
Keymaster
What about this?:
add_filter( 'the_excerpt', function( $content ) {
$content = strip_shortcodes( $content );
return $content;
} );