문제

How to get global options SEF of Joomla 3? Searching whole day nothing found. This is for Joomla 1.5 need same on 3rd

$config =& JFactory::getConfig();
echo 'Site name is ' . $config->getValue( 'config.sitename' );
도움이 되었습니까?

해결책

In Joomla 3.x, JRegistry::getValue() has been removed, so Use JRegistry::get() instead.

So in a nutshell, here is the code you need to use:

$config = JFactory::getConfig();
echo 'Site name is ' . $config->get( 'sitename' );
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top