Skip to content

Instantly share code, notes, and snippets.

@elioair
Last active March 21, 2016 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elioair/8036f28aa940190ea10b to your computer and use it in GitHub Desktop.
Save elioair/8036f28aa940190ea10b to your computer and use it in GitHub Desktop.
get joomla page title
#Get Page Title#
$doc = JFactory::getDocument();
$page_title = $doc->getTitle();
#Set Page Title#
$con = JFactory::getConfig();
$sitename = $con->getValue('config.sitename'); $
doc->setTitle($page_title.' - '.$sitename);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment