Support

Account

Home Forums Front-end Issues Displaying Multiple Values from Custom Taxonomy Terms Reply To: Displaying Multiple Values from Custom Taxonomy Terms

  • The exact code to use will depend on what you’re returning from the image field.

    Generally what you need to do is supply the right post_id value for the ACF field. This example will get the value in the image field.

    
    $image = get_field('industry_image', $term->taxonomy.'_'.$term->term_id);
    

    The image field documentation goes into more detail about displaying the image based on what you’re returning which can be an Object, URL or ID. http://www.advancedcustomfields.com/resources/image/