How to get sub-categories of a specific parent category?

后端 未结 6 1306
余生分开走
余生分开走 2020-12-29 04:30

I had a main category (parent category) whose id = 10. I want to echo just its sub-categories. How can I do that?

6条回答
  •  臣服心动
    2020-12-29 05:05

    $children = Mage::getModel('catalog/category')->getCategories(10);
    foreach ($children as $category) {
        echo $category->getName();
    }
    

提交回复
热议问题