-4

我希望能够在特定位置分配多个模块,但在 joomla 中的任何给定时间只显示其中两个。我该怎么做?

4

1 回答 1

2

经过一番研究,我发现可以使用下面的代码来做到这一点。

$arrayofmoduleObj = JModuleHelper::getModules('position') // to get an array of module Object.
$options    = array('style' => 'chrome');
foreach($arrayofmoduleObj as $moduleObject){
    /* code to decide whether to print this module or not if yes    */
    echo JModuleHelper::renderModule($moduleObject,$options) //to render a module Object..
   else continue;
}
于 2014-02-06T23:52:02.780 回答