Support

Account

Home Forums General Issues Display value of attribute from ACF field group Reply To: Display value of attribute from ACF field group

  • Solved:

    <?php 
    $term_id = get_field('myfield');
    $term_name = get_term( $term_id )->name;
    echo "<b>" . $term_name . "</b><br>";
    ?>