How to Add Page Slug in Body Class in Joomla


<?php
$menu = &JSite::getMenu();
$active = $menu->getActive();
?>

 

Add Alias to Body

Next, let’s print the active menu item’s alias as either an id or class attribute on an html element. In this example, we’re printing it as the id for the document’s body.

<body id="<?php print $active->alias; ?>">

Leave a comment