How do i display/list subcategories of current category on category pages?
-
Hi, Thank you for this plugin, really useful. Need an advice on my current project. I wanted to show/list subcategories of current category with image on category page.
I’ve tried below code, but only listing subcategories which has common posts!
<ul> <?php foreach (get_the_category() as $cat) : ?> <li> <a href="<?php echo get_category_link($cat->term_id); ?>"><img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" /></a> <a href="<?php echo get_category_link($cat->term_id); ?>"><?php echo $cat->cat_name; ?></a> </li> <?php endforeach; ?> </ul>
Could you please give me a code snippet on how to do this?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘How do i display/list subcategories of current category on category pages?’ is closed to new replies.