Support

Account

Home Forums General Issues Cant get_field taxonomy->name Reply To: Cant get_field taxonomy->name

  • 
    $terms = get_field('udvikler');
    echo $terms[0]->name;
    

    or more likely since you’re getting an array

    
    $terms = get_field('udvikler');
    if (count($terms)) {
      foreach ($terms as $term) {
        echo $term->name,'<br />';
      }
    }