在Magento后端添加新图像属性并获取该新图像属性的所有图像

时间:2014-01-07 06:26:41

标签: magento magento-1.7 magento-1.6

我已在magento admin中添加了新的图片属性,方法是使用catalog => attributes => manage属性创建新属性,并在admin中显示新属性。

但问题是如何获取此属性的所有图像。?enter image description here

我添加了Pos图像属性。现在我想要使用编码的所有图像。请帮助

1 个答案:

答案 0 :(得分:1)

 <?$_images = Mage::getModel('catalog/product')->load($_product->getId())->getMediaGalleryImages();?>
    <?if($_images){?>           
       <?$i=0; foreach($_images as $_image){ $i++;?>
          <a href="#"><img src="<?=$this->helper('catalog/image')->init($_product, 'thumbnail', $_image->getFile())->resize(200, 130); ?>" width="200" height="130" alt="<?=$this->htmlEscape($_image->getLabel());?>" title="<?=$this->htmlEscape($_image->getLabel());?>" /></a>              
           <a href="#"><img src="<?=$this->helper('catalog/image')->init($_product, 'small_image', $_image->getFile())->resize(200, 130); ?>" width="200" height="130" alt="<?=$this->htmlEscape($_image->getLabel());?>" title="<?=$this->htmlEscape($_image->getLabel());?>" /></a>               
       <?}?>
    <?}?>

你可以使用此代码获取图像更改标签以获得不同的图像,如果缩略图然后使用缩略图