1. <?php  
  2. $related= $_product->getRelatedProducts();  
  3. foreach($related as $_item):  
  4.     $_item = $_item->load($_item->getId());  
  5.     //echo $this->htmlEscape($_item->getName()).': <a href="'.$_item->getProductUrl().'"><img src="'.$_item->getImageUrl().'" width="80" height="80" /></a>';  
  6.     echo $this->htmlEscape($_item->getName()).': <a href="'.$_item->getProductUrl().'"><img src="'.Mage::helper('catalog/image')->init($_item, 'thumbnail')->resize(80, 80).'" width="80" height="80" /></a>';  
  7. endforeach;  
  8. ?> 
posted on 2014-07-24 14:41  闪电王国  阅读(221)  评论(0编辑  收藏  举报