How to check if your on the Home Page that does not use the Front Page layout in Joomla! 1.5 using PHP

H

How Can We Help?

How to check if your on the Home Page that does not use the Front Page layout in Joomla! 1.5 using PHP

Use the code below on any page in your Joomla! application, the code may be changed or modified according to your needs.

 
	$menu = &JSite::getMenu();
 
	if (JRequest::getInt('Itemid') == $menu->getDefault()):
 
	    echo "I'm on the Home Page";
 
	else:
 
	    echo "I'm not on the Home Page";
 
	endif;

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me