Support

Account

Home Forums General Issues Pulling image from custom taxonomies Reply To: Pulling image from custom taxonomies

  • use

    
    get_field('product_category_img', 'term_'.$category->term_id ) 
    

    or

    
    get_field('product_category_img', $category) 
    

    or you can also use

    
    get_field('product_category_img', 'product_category_'.$category->term_id )