Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php $categories = $_product->getCategoryIds(); ?>
  2.  
  3. <?php
  4.  
  5.  
  6. foreach($categories as $k => $_category_id):
  7.  
  8. $_category = Mage::getModel('catalog/category')->load($_category_id)
  9.  
  10.  
  11.  
  12. ?>
  13.  
  14.  
  15. <a href="<?php echo $_category->getUrl() ?>"><?php echo $_category->getName() ?></a>
  16.  
  17.  
  18. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement