Last active
March 21, 2016 19:08
-
-
Save elioair/8036f28aa940190ea10b to your computer and use it in GitHub Desktop.
get joomla page title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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