Quantcast
Channel: Topic Tag: plugin | WordPress.org
Viewing all articles
Browse latest Browse all 26892

markyeoj on "[Plugin: Categories Images] List the Custom Taxonomy with with image"

$
0
0

I used this code.. but did not work,

<div id="recipe-category" class="rolls">
Recipe Category
<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>
</div>

here's the image


Viewing all articles
Browse latest Browse all 26892

Trending Articles