Check if current page is Joomla home page
If your home is “Component - Front Page”, then this small function can check if current page is exactly Joomla home page:
function isHome() {
global $task;
return $task == 'blogcategory';
}
If your home is “Component - Front Page”, then this small function can check if current page is exactly Joomla home page:
function isHome() {
global $task;
return $task == 'blogcategory';
}