Reputation: 7778
how can I get the all subcategories of a category in magento if there are many nested subcategories?
Thanks
Upvotes: 1
Views: 1797
Reputation: 633
$subcats = Mage::getModel('catalog/category')->getCategories($your_category_id);
foreach ($subcats as $sub) {
echo $sub->getName();
}
Upvotes: 3