它是非常简单和容易的方式,在 Magento 获取类别图像。
如果你想要在 Magento 中显示当前类别图像,请使用下面给出的代码之后:
$category = Mage::getModel('catalog/layer')->getCurrentCategory();
$img = $this->getCategoryImage($category); // call a function
请创建一个函数作为以下给出:
function getCategoryImage($category)
{
$categoryCollection = Mage::getModel('catalog/category')
->setStoreId(Mage::app()->getStore()->getId())
->getCollection()
->addAttributeToSelect('image')
->addIdFilter($category->getId());
foreach($categoryCollection as $category)
{
return $category->getImageUrl();
}
}
|