Support

Account

Home Forums General Issues Trouble displaying taxonomy value Reply To: Trouble displaying taxonomy value

  • Thanks James, That was a massive help.

    I ended up using a slight variation on the code which worked.

    <?php 
    $term = get_field('staff_member');
    if( $term ): ?>
    	<h2><?php echo $term->name; ?></h2>
    <?php endif; ?>

    Cheers,
    Dan