我正在构建我的第一个 joomla 站点,当我包含在我的模板 index.php 中时,我被困在这里。
<jdoc:include type="component" />
它在我的前端显示主页。找不到解决方案需要帮助。
创建一个自定义 Html 模块 frontcomp 并将其仅显示在主页上,而无需在其中写入任何内容。然后在 index.php(template) 中添加以下内容
<?php if($this->countModules('frontcomp')) : ?>
<jdoc:include type="modules" name="frontcomp" style="xhtml" />
<?php endif; ?>
<?php if(!$this->countModules('frontcomp')) : ?>
<jdoc:include type="message" />
<jdoc:include type="component" />
<?php endif; ?>