-
Tutorials
- How to Send Emails in Joomla with PHP
- How to Connect to an External Database in Joomla with PHP
- How to Check If the Current User is Super User in Joomla with PHP
- How to Check if the Current Page Is the Homepage in Joomla with PHP
- How to Create a User Account in Joomla with PHP
- How to Create an Article in Joomla with PHP
- PHP Scripts Collection
- Troubleshooting
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