Home › Forums › Pro Support › Removing links from all taxonomy items › Reply To: Removing links from all taxonomy items
January 1, 2020 at 9:52 pm
#12520
Keymaster
Hi there,
It doesn’t look like WP has a filter to do this.
I wonder if this would work?:
add_filter( 'wpsp_terms_output', function( $output ) {
return strip_tags( $output );
} );