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 Remove Links from date/author Reply To: Remove Links from date/author

#10638
Tom
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 🙂