Support

Account

Home Forums Front-end Issues can't print taxonomy field name Reply To: can't print taxonomy field name

  • You need to return an object form the taxonomy field

    
    $current_user = get_current_user_id();
    $term = get_field('corso', 'user_'.$current_user);
    echo $term->term_id,'<br />',$term->name;