Displaying Global Configuration Settings Values in Joomla Website

To get and display the configurations settings values in any Joomla website, Joomla’s JFactory object is used. Using JFactory, we can load configurations values and use them anywhere in our Joomla templates like this: $config =&JFactory::getConfig(); $website_name = $config->getValue(‘config.sitename’); $MetaDesc = $config->getValue(‘config.MetaDesc’); $MetaKeys = $config->getValue(‘config.MetaKeys’); Hope that helps. Cheers.