Support

Account

Home Forums ACF PRO Category images Reply To: Category images

  • In this part of your code:

    <?php the_sub_field('image', $row->term_id) ?>

    You need to add the taxonomy to the term id. Assuming that it is “category”

    <?php the_sub_field('image', 'category_'.$row->term_id) ?>