Support

Account

Home Forums Front-end Issues Display the name of taxonomy Reply To: Display the name of taxonomy

  • Hi JF,
    You can try this one, it should works:

    <?php $term = get_field('taxonomy');
    if( $term ): 
    echo $term[0]->name;
    endif; ?>