joomla-2.5でコンポーネント内のモジュールを表示したい。以下のコードを試しましたが、うまくいきません。
jimport('joomla.application.module.helper');
$modules = JModuleHelper::getModules('latest albums');
foreach($modules as $module)
{
echo JModuleHelper::renderModule($module);
}
「latest albums」は私のモジュールのタイトルです。また、mod_name を単独で使用し、(mod_name,mod title) も一緒に使用しましたが、機能しませんでした。
どうすれば解決できますか。ありがとう