Customising the dynamic page title

From Joomla! Documentation

Revision as of 12:02, 19 November 2008 by Ksookocheff (talk | contribs) (New page: '''Customize the dynamic page title''' To customize the page title to add the site name followed by the document title, edit index.php in the template that you are currently using. For ex...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Customize the dynamic page title To customize the page title to add the site name followed by the document title, edit index.php in the template that you are currently using. For example, directly after the <head> tag add the following to show "Site Name - Page Name" as the browser's page title:

<?php
$document =& JFactory::getDocument();
$document->setTitle($mainframe->getCfg('sitename') . " - " . $document->title);
?>