How to check If is home Page in Magento

Check If Home Page Magento If you need to determine if the the current page is the homepage in Magento, the below code works.
<?php
 if(Mage::getSingleton('cms/page')->getIdentifier() == 'home'  && Mage::app()->getFrontController()->getRequest()->getRouteName() == 'cms') {
echo 'i am home page';
}
?>

No comments:

Post a Comment