Support

Account

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 🙂