Support

Account

Home Forums Front-end Issues Displaying an ACF image field for a Tag taxonomy within a loop of posts Reply To: Displaying an ACF image field for a Tag taxonomy within a loop of posts

  • Thank you! I edited slightly and now working brilliantly 🙂

    <?php $tag_image = get_field( ‘tag_image’, ‘term_’.$tag->term_id ); ?>
    <?php if ( $tag_image ) { ?>
    ” alt=”<?php echo $tag_image[‘alt’]; ?>” />
    <?php } ?>