我正在使用magento 1.7.0.2我希望获得类别等级。
例如,我有像下面的分类树
AllCategory->Mobile->samsung
AllCategory->Clothing->Men
AllCategory->Laptop->Dell
这里我想访问二级类别意味着移动,服装,笔记本电脑
所以怎么做
请帮帮我 先谢谢你。
答案 0 :(得分:3)
$categories = Mage::getModel('catalog/category')
->getCollection()
->addAttributeToSelect('*')
->addIsActiveFilter()
->addAttributeToFilter('level',2)
基本上添加此->addAttributeToFilter('level',2)