Mukesh
Mukesh

Reputation: 7778

How to get subcategories of a category in magento

how can I get the all subcategories of a category in magento if there are many nested subcategories?

Thanks

Upvotes: 1

Views: 1797

Answers (1)

s4lfish
s4lfish

Reputation: 633

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

Upvotes: 3

Related Questions