Advertisement
Guest User

Untitled

a guest
Jul 16th, 2014
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <ul class="product_list">
  2.     <?php foreach (get_the_terms(get_the_ID(), 'productcategory') as $cat) : ?>
  3.     <li class="product-post">
  4.         <img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" />
  5.         <a href="<?php echo get_term_link($cat->term_id, 'productcategory'); ?>"><?php echo $cat->name; ?></a>
  6.     </li>
  7.     <?php endforeach; ?>
  8. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement