We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Removing links from all taxonomy items Reply To: Removing links from all taxonomy items

#12520
Tom
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 );
} );