Codex tools: Log in
Contents |
Returns an HTML string of taxonomy terms associated with a post and given taxonomy. Terms are linked to their respective term listing pages.
<?php get_the_term_list( $id, $taxonomy, $before, $sep, $after ) ?>
Used inside the loop this outputs the terms from the people taxonomy for a specific post.
<?php echo get_the_term_list( $post->ID, 'people', 'People: ', ', ', '' ); ?>
This would return something like.
People: <a href="person1">Person 1</a>, <a href="person2">Person 2</a>, ...
get_the_term_list() is located in wp-includes/category-template.php.
get_the_terms(), wp_get_object_terms() get_terms()