magento关联产品

  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. ?> 
原文地址:https://www.cnblogs.com/focai/p/3865589.html