TL; DR : 전체 제품을로드하지 않고 어떻게 제품 이미지 / 갤러리를로드합니까?
제품에 이미지를로드하고 싶습니다. .phtml 에서 내가하는 일
$_popularCollection = $this->getPopularCollection();
foreach ($_popularCollection as $_product):
// the rest
$mediaGallery = $_product->getMediaGalleryImages();
endforeach;
//the rest
내가 블록 클래스에서 무엇을 :
public function getPopularCollection() {
// http://magento.stackexchange.com/q/5838/3089
// no category
if ( is_null( $this->getCategoryId() ) )
return false;
/** @var Mage_Catalog_Model_Category $category */
$category = Mage::getModel('catalog/category')->load( (int)$this->getCategoryId() );
/** @var Mage_Catalog_Model_Resource_Product_Collection $_popularCollection */
$_popularCollection = Mage::getModel('catalog/product')->getResourceCollection();
$_popularCollection->addAttributeToSelect('*');
$_popularCollection->setStoreId(Mage::app()->getStore()->getId());
$_popularCollection->addCategoryFilter($category);
return $_popularCollection;
}
이것은 작동하지만 모든 것을로드합니다. $_popularCollection->addAttributeToSelect(*);
시도했지만 $_popularCollection->addAttributeToSelect('media_gallery');
작동하지 않는 것 같습니다.