wpseek.com
A WordPress-centric search engine for devs and theme authors
the_terms › WordPress Function
Since2.5.0
Deprecatedn/a
› the_terms ( $post_id, $taxonomy, $before = '', $sep = ', ', $after = '' )
| Parameters: (5) |
|
| Returns: |
|
| Defined at: |
|
| Codex: |
Displays the terms for a post in a list.
Source
function the_terms( $post_id, $taxonomy, $before = '', $sep = ', ', $after = '' ) {
$term_list = get_the_term_list( $post_id, $taxonomy, $before, $sep, $after );
if ( is_wp_error( $term_list ) ) {
return false;
}
/**
* Filters the list of terms to display.
*
* @since 2.9.0
*
* @param string $term_list List of terms to display.
* @param string $taxonomy The taxonomy name.
* @param string $before String to use before the terms.
* @param string $sep String to use between the terms.
* @param string $after String to use after the terms.
*/
echo apply_filters( 'the_terms', $term_list, $taxonomy, $before, $sep, $after );
}