服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

Magento得到类别图像

时间:2016-02-25 08:25来源: 作者: 点击:
它是非常简单和容易的方式,在 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();
    }
}
 
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------