Advertisement
Guest User

Untitled

a guest
Jul 16th, 2014
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php foreach (get_the_terms(get_the_ID(), 'productcategory') as $cat) : ?>
  2.     <?php if($cat->parent < 1): // Only Parent Category, if you want the Sub-category, delete the If?>
  3.         <img src="<?php echo z_taxonomy_image_url($cat->term_id); // URL of the Image ?>" alt="<?php echo $cat->cat_name ; // Name of the Category ?>" />
  4.     <?php endif; ?>
  5. <?php endforeach;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement