Home › Forums › General Issues › Trouble displaying taxonomy value › Reply To: Trouble displaying taxonomy value
Hi Dan,
Check out this tutorial for getting values from a taxonomy term: http://www.advancedcustomfields.com/resources/get-values-from-a-taxonomy-term/
Basically, you have to pass a second argument which is a string containing the term’s taxonomy and ID in the following format: "{$term->taxonomy}_{$term->term_id}"
Your code will be something like this:
$term_string = '<your term string>';
$term = get_field('staff_member', $term_string);
if( $term ): ?>
<h2><?php echo $term->name; ?></h2>
<p><?php echo $term->description; ?></p>
<?php endif; ?>
Check out the taxonomy field documentation for more info on this. Here is the link: http://www.advancedcustomfields.com/resources/taxonomy/#template-usage
Hope this helps 🙂
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.