Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. $_tags = new Mage_Tag_Block_Product_List();
  3. ?>
  4.  
  5. Product Tags:
  6. <ul class="product-tags">
  7. <?php foreach($_tags->getTags() as $tag):?>
  8. <li><a href="<?=$tag->getTaggedProductsUrl()?>"><?=$tag->getName()?></a></li>
  9. <?php endforeach;?>
  10. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement