首页 > 其他 > 详细

magento关联产品

时间:2014-07-24 17:09:40      阅读:230      评论:0      收藏:0      [点我收藏+]
  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. ?> 

magento关联产品,布布扣,bubuko.com

magento关联产品

原文:http://www.cnblogs.com/focai/p/3865589.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!