to get all the child categories of the required category id
<?php
$category_model = Mage::getModel('catalog/category'); //get category model
$_category = $category_model->load($categoryid); //$categoryid for which the child categories to be found
$all_child_categories = $category_model->getResource()->getAllChildren($_category); //array consisting of all child categories id
?>
<?php
$category_model = Mage::getModel('catalog/category'); //get category model
$_category = $category_model->load($categoryid); //$categoryid for which the child categories to be found
$all_child_categories = $category_model->getResource()->getAllChildren($_category); //array consisting of all child categories id
?>
No comments:
Post a Comment