Last active
August 29, 2015 14:00
-
-
Save mikedamage/f19fdb5d67215791ad94 to your computer and use it in GitHub Desktop.
WP taxonomy terms
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, 'industry'); | |
// Terms is now an array filled with taxonomy term objects. | |
var_dump($terms); | |
// Loop through terms using foreach | |
foreach ($terms as $term): | |
$term_link = get_term_link($term->term_id, 'industry'); | |
?> | |
<a href="<?php echo $term_link; ?>"><?php echo $term->name; ?></a> | |
<?php endforeach; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment