Home › Forums › Pro Support › Remove Links from date/author › Reply To: Remove Links from date/author
August 7, 2019 at 5:07 pm
#10638
Keymaster
No, but you can try this to do that:
add_filter( 'wpsp_terms_output', function( $output ) {
return sprintf( '<span class="wp-show-posts-terms wp-show-posts-meta">%1$s</span>',
strip_tags( get_the_term_list( get_the_ID(), $settings[ 'taxonomy' ], '', apply_filters( 'wpsp_term_separator', ', ' ) ) )
);
} );
Let me know 🙂