Created
September 17, 2015 17:36
-
-
Save crondeau/56c63669fb01d5dcd5f9 to your computer and use it in GitHub Desktop.
Pull the terms and display them as a list of links.
This file contains 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
<ul> | |
<?php | |
$terms = get_terms( 'taxonomy-name' ); | |
foreach($terms as $term){ | |
$term_link = get_term_link( $term ); | |
echo '<li><a href="' . $term_link. '">' . $term->name . '</a></li>'; | |
} | |
?> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment