/ Published in: PHP
This will detect the Home Page of Joomla and perfom whatever code you tell it to
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php //This will detect the Home Page of Joomla and perfom whatever code you tell it to $menu = & JSite::getMenu(); if ($menu->getActive() == $menu->getDefault()) { //Your Code goes here } ?>