Skip to content

Instantly share code, notes, and snippets.

@philliproth
Created July 31, 2017 06:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philliproth/98beab0a47720187b108d329dd586401 to your computer and use it in GitHub Desktop.
Save philliproth/98beab0a47720187b108d329dd586401 to your computer and use it in GitHub Desktop.
<?php
$terms = get_terms( 'countries' );
if ( $terms && !is_wp_error( $terms ) ) {
echo '<ul>';
foreach ( $terms as $term ) {
echo '<li><a href="' . get_term_link( $term->term_id ) . '">' . $term->name . '</a></li>';
}
echo '</ul>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment