Test if you’re on the homepage in Joomla
- February 12th, 2010
- Write comment
Hello,
today I’ll show you an elegant way to check if we are in the home page of our Joomla project :
$IsHomePage = false;
$menu = &JSite::getMenu();
if( $menu->_default == $menu->_active)
{
$IsHomePage = true;
}
it’s specialy helpfull for intergators (templates).

Facebook
Twitter
Linkedin
Viadeo