Last active
January 22, 2016 10:10
-
-
Save Vernonmac/a109cd467e0ce7934f07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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