タイトルを使用して joomla でモジュールをレンダリングするにはどうすればよいですか。これで、位置に基づいてモジュールをレンダリングできるようになりましたが、モジュールのタイトルが含まれていません。
モジュールをレンダリングする方法は次のとおりです。
<?php
jimport('joomla.application.module.helper');
$modules = JModuleHelper::getModules('position-3');
foreach ($modules as $module) {
echo JModuleHelper::renderModule($module->title);
echo JModuleHelper::renderModule($module);
}
?>
どうもありがとう。