如何获取具有特定名称的magento产品的所有图库图像?

时间:2014-04-10 14:51:46

标签: magento

我希望从产品的图库图像中将图像标记为特殊图像。使用此图像我想获取该图像网址。

我尝试使用相同但不适合我的代码

<?php echo Mage::getModel('catalog/product')->load($_product->getId())->getMediaGalleryImages()->getItemByColumnValue('label','look')->getFile();  ?>

这对方法getFile()

的抛出错误

1 个答案:

答案 0 :(得分:1)

您可以通过这种方式获得具有特定标签的产品图片

$image= Mage::getModel('catalog/product')->load($productid)->getMediaGalleryImages();
 $_images = $image->getItemByColumnValue('label', 'YOUR_LABEL');

http://magentotutorialbeginners.blogspot.in/2014/03/get-product-image-from-label-magento.html

如果您有任何疑问,请告诉我