Home › Forums › Pro Support › Hide sortcode from search results › Reply To: Hide sortcode from search results
June 7, 2019 at 4:25 pm
#9777
Keymaster
Let’s try manually removing it:
add_filter( 'get_the_excerpt', function( $content ) {
$content = preg_replace( '#\[[^\]]+\]#', '', $content );
return $content;
} );