Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的网站上创建了一个“面包屑”模块的实例,设置为显示在“自定义位置”。有一个组件有一系列用 HTML 编写的网页。如何在这些网页中指定 customposition 的位置,以便 joomla 在我的组件中显示模块?
问候, 阿比
找到了!JModuleHelper 来救援 :)
http://www.minitek.gr/tutorials/joomla-16-tutorials/joomla-api-tutorials/item/203-how-to-insert-a-module-position-inside-a-joomla-component.html
这是链接中的代码:
$modules =& JModuleHelper::getModules('position_name'); foreach ($modules as $module){ echo JModuleHelper::renderModule($module); }