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
$isHomePage = ($menu->getActive() == $menu->getDefault());

if ($isHomePage)
{
    echo 'This is the front page!';
}
Last updated on Nov 28th 2024 09:11

Deprecated: Function lcg_value() is deprecated since 8.4, use \Random\Randomizer::getFloat() instead in /home/tassos-pv1ry/staging.tassos.gr/public/plugins/system/sessiongc/src/Extension/SessionGC.php on line 66