0

我正在使用 magento 1.7.0.2 我想获得类别级别。

例如,我有如下的类别树

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

在这里我想访问二级类别意味着手机、服装、笔记本电脑

那么怎么做

请帮助我提前谢谢你。

4

1 回答 1

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

基本上加这个->addAttributeToFilter('level',2)

于 2013-05-21T05:06:22.397 回答