Wordpress - Display Taxonomy Terms without Links - (get_terms, the_terms, wp_tag_cloud) -


is there way display taxonomy terms without them being link?

i want display terms underneath taxonomy of "headings," without them being links.

i've tried multiple solutions such get_terms, get_the_terms, the_terms, wp_tag_cloud unable find solution.

thanks.

the solution of bizarre returned terms, if need display terms per post item can use this:

$terms = wp_get_post_terms( $post->id, 'taxonomy-term', array("fields" => "names") ); echo implode(', ',$terms); 

make sure right "taxonomy-term" correct!


Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -