Support

Account

Home Forums General Issues ACF get image from product term Reply To: ACF get image from product term

  • try using either

    
    $image = get_field('brand_logo', 'term_' . $term_id);
    

    or

    
    $image = get_field('brand_logo', $queried_object);