Home › Forums › Pro Support › Hide sortcode from search results › Reply To: Hide sortcode from search results
May 31, 2019 at 3:50 pm
#9636
Keymaster
Hmm, what about this?:
add_action( 'wp', function() {
add_filter( 'get_the_excerpt', 'strip_shortcodes', 20 );
} );