Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Display custom taxonomy (like “the_category”) for custom post type Reply To: Display custom taxonomy (like “the_category”) for custom post type

#156888
Duncan
Participant

I have played about with the code some more as I needed to display only one custom taxonomy that was a link.
However I am unable to get the link to work – anyone have any ideas on this?

See here:

<?php $terms = get_the_terms( $post->ID , 'yourcustomtaxonomyhere' ); 
                    foreach ( $terms as $term ) {
                    echo '<a href="' . $term_link . '">' . $term->name . '</a>';
                    } 
                ?>