List taxonomies with links
-
Hello,
i want to list taxonomies/terms where some post belongs for example. I used this code<?php $terms = get_the_terms( $post->ID , 'pravilnici' ); foreach( $terms as $term ) { print $term->name ; unset($term); }?>
It list terms in this manner term1term2term3 without space or , for example. Also its just text, its not a link to respective term.
How can i achieve that?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘List taxonomies with links’ is closed to new replies.