I want to get my Category images into my WooCommerce loop below but the array that’s created from my code below doesn’t seem to collect the image URL.
PHP
<?php $catTerms = get_terms('product_cat', array('hide_empty' => 0, 'orderby' => 'ASC', 'exclude' => '17,77')); ?>
<?php foreach($catTerms as $catTerm) : ?>
<ul>
<li><a href="<?php echo $catTerm->slug; ?>"><?php echo $catTerm->name; ?></a></li>
</ul>
<?php endforeach; ?>
Would someone be kind enough to assist?
Thanks
Try this,
Hope its works..
I think you have to put the UL tag out of the foreach to no repeat the UL for each category.