Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 21 down vote accepted
$children = Mage::getModel('catalog/category')->getCategories(10);
foreach ($children as $category) {
    echo $category->getName();
}
share|improve this answer
tnx :) it worked f9 free of errors :) – atif Mar 10 '11 at 5:13
@clockworkgeek How would you get the url's to the subcategories? Thanks. – shnozolla Dec 24 '12 at 20:20
1  
@shnozolla simply use getUrl() instead of getName(). – clockworkgeek Dec 27 '12 at 23:43
thanks ..Works like a charm.. – N e w B e e Jan 16 at 19:41

This code may help if you want to get child category of every current category

    <?php 
    $layer = Mage::getSingleton('catalog/layer');
    $_category = $layer->getCurrentCategory();
    $currentCategoryId= $_category->getId();
    $children = Mage::getModel('catalog/category')->getCategories($currentCategoryId);
    foreach ($children as $category)
    {
          echo $category->getName(); // will return category name 
          echo $category->getRequestPath(); // will return category URL
    }
    ?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.