Search This Blog

Friday, June 15, 2012

Footer Code for sitemap in magento

<div style="float: left; width: 87%;"><ul>
<?php
 $h3h3=Mage::getModel('catalog/category')->getCollection();
foreach($h3h3 as $cat){
   
$cata=Mage::getModel('catalog/category')->load($cat->getEntityId());
if($cat->getEntityId() != 1 && $cat->getEntityId() != 2){
        echo "<li><a href='".$cata->getUrl()."'>".$cata->getName()."</a></li>";
}
}
?>
 </ul>

For more information checkout our official website.