Doing Business with the City of Mississauga
$ID = get_the_ID(); $terms = wp_get_post_terms( $ID, 'eventtag' ); echo '- ';
foreach ( $terms as $term ) {
// The $term is an object, so we don't need to specify the $taxonomy.
$term_link = get_term_link( $term );
// If there was an error, continue to the next term.
if ( is_wp_error( $term_link ) ) {
continue;
}
// We successfully got a link. Print it out.
echo '
- ' . $term->name . ' '; } echo '