How to Check if the Current Page Is the Homepage in Joomla with PHP

Below you can find a PHP snippet that will allow you to detect whether we are browsing the home page.

use Joomla\CMS\Factory;

$menu = Factory::getApplication()->getMenu();

// Determine if the user is viewing the front page
$active  = $menu->getActive();
$default = $menu->getDefault();

$isHomePage = ($active !== null && $active->id === $default->id);

if ($isHomePage)
{
    echo 'This is the front page!';
}
Last updated on Feb 26th 2026 15:02