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 Display categories as tags Reply To: Display categories as tags

#5359
Tom
Keymaster

Hmm, what if you do this?:

add_filter( 'wpsp_terms_output', function( $output ) {
	$categories_list = sprintf(
		'<span class="categories-list">%s</span>',
		get_the_category_list( '' ) 
	);

	return 'hi!' . $output . $categories_list;
} );

Can you see the text hi!?