Skip to content

Instantly share code, notes, and snippets.

@walterjaworski
Last active April 25, 2017 01:20
Show Gist options
  • Save walterjaworski/9e795f95b629ab4dca4dafb8a744df85 to your computer and use it in GitHub Desktop.
Save walterjaworski/9e795f95b629ab4dca4dafb8a744df85 to your computer and use it in GitHub Desktop.
<?php if (is_singular('moda') || is_archive('moda')) {
$terms = get_the_terms( $post->ID, 'categoria-moda' );
foreach($terms as $term) {
echo '<a href="' . $term->link . '" alt="' . $term->name . '">';
echo $term->name;
echo '</a>';
}
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment