如何在magento 1.7.0.2中获得特定级别的类别

时间:2013-05-21 04:53:24

标签: magento magento-1.7

我正在使用magento 1.7.0.2我希望获得类别等级。

例如,

我有像下面的分类树

AllCategory->Mobile->samsung
AllCategory->Clothing->Men
AllCategory->Laptop->Dell

这里我想访问二级类别意味着移动,服装,笔记本电脑

所以怎么做

请帮帮我 先谢谢你。

1 个答案:

答案 0 :(得分:3)

$categories = Mage::getModel('catalog/category')
                ->getCollection()
                ->addAttributeToSelect('*')
                ->addIsActiveFilter()
                ->addAttributeToFilter('level',2)

基本上添加此->addAttributeToFilter('level',2)