Quantcast
Channel: Webkul Blog
Viewing all articles
Browse latest Browse all 5553

Get Sub Category List Of Particular Parent Category In Magento

$
0
0

.

<select id="category" class="myinput-text required-entry widthinput" name="category">
<?php 
  $parentid=5; // parent id which you want sub category
  $categories=explode(',',Mage::getModel('catalog/category')->load($parentid)->getChildren());
  foreach($categories as $cat){ 
     $category=Mage::getModel('catalog/category')->load($cat);
?>
   <option value="<?php echo $category->getId();?>"><?php echo $category->getName();?></option>
<?php } ?>
</select>
Facebook Twitter Email Reddit Stumbleupon

Viewing all articles
Browse latest Browse all 5553

Trending Articles