Support

Account

Forum Replies Created

  • Hi,

    This is what worked for me. My custom field was a single select. I had to use the following to display the term:

    <?php $term = get_field('trailer_condition');
    if( $term ): ?>
    <div class="trailercondition">Condition: <?php echo $term[0]->name; ?></div>
    <?php endif; ?>

    Hope that helps.

Viewing 1 post (of 1 total)