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

  • 
    // get the image from the tag
    $image = get_field('image', 'term_'.$tag->term_id);
    
    // output the image
    the_field('image', 'term_'.$tag->term_id);