最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > Magento > Magento教程 >

Magento 得到类别图像

时间:2014-08-02 18:02来源:未知 作者:最模板zuimoban 点击:
它是非常简单和容易的方式,在 Magento 获取类别图像。 如果你想要在 Magento 中显示当前类别图像,请使用下面给出的代码之后: $category = Mage::getModel(catalog/layer)-getCurrentCategory(); $img =
 
它是非常简单和容易的方式,在 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();
    }
}
 
(责任编辑:最模板)
------分隔线----------------------------
栏目列表
推荐内容