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
Post a Comment