Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Vernonmac/a109cd467e0ce7934f07 to your computer and use it in GitHub Desktop.
Save Vernonmac/a109cd467e0ce7934f07 to your computer and use it in GitHub Desktop.
<?php $terms = get_the_terms( $post->ID, 'taxonomyname' ); if ( $terms && ! is_wp_error( $terms ) ) : $taxname = array();?>
<ul>
<?foreach ( $terms as $term ): ?>
<li><?php echo $term->name; ?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment