Support

Account

Home Forums ACF PRO Looping CPT with Taxonomy field returns CPTs but not ACF fields in the CPT Reply To: Looping CPT with Taxonomy field returns CPTs but not ACF fields in the CPT

  • this is incorrect

    
    $image = the_field('partner_logo');
    

    the_field() echos the value of the field, it does not return a value.

    You have to use

    
    $image = get_field('partner_logo');