Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chered/a2695cc1704f1a07f77b64ef010ba4b3 to your computer and use it in GitHub Desktop.
Save chered/a2695cc1704f1a07f77b64ef010ba4b3 to your computer and use it in GitHub Desktop.
<?php $terms = get_the_terms( $post->ID , 'taxonomyname' );
foreach ( $terms as $term ) {
$term_link = get_term_link( $term, 'taxonomyname' );
if( is_wp_error( $term_link ) )
continue;
echo '<a href="' . $term_link . '">' . $term->name . '</a>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment