Styled Blog List #1

Here is the sample of the styled blog list with customized left sidebar. Build amazing styled blog lists with Scalia's top-notch blog styles!
Get The Root Category In Magento

<?php$rootCategoryId = Mage::app()->getStore()->getRootCategoryId();$_category = Mage::getModel(‘catalog/category’)         ->load($rootCategoryId);// You can then get all of the top level categories using:$_subcategories = $_category->getChildrenCategories();?>

1 13 14 15 53