How to show images along category names on homepage
I am trying to add images along the category name (main categories only) in the "Ad categories" box on homepage.
I am using the plugin that needs me to add certain code where the ad categories are being displayed.
<ul>
<?php foreach (get_terms('your_taxonomy') as $cat) : ?>
<li>
<img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" />
<a href="<?php echo get_term_link($cat->slug, 'your_taxonomy'); ?>"><?php echo $cat->name; ?></a>
</li>
<?php endforeach; ?>
</ul>
Where should I be looking for the code that generates ad categories on homepage ?