Support

Account

Home Forums Front-end Issues Taxonomy Term Reply To: Taxonomy Term

  • If you’re returning an term object then you need to use get_field() and use it rather than the_field() which echos the returned field.

    
    <?php 
      $term = get_field('taxonomy_field');
      echo $term->name;
    ?>