0

我一直在为 joomla 3.1 创建模板,我按照 joomla doc 如何创建它的说明进行操作。每件事都进展顺利。但是,当我设置模块标题显示在前端时,该模块标题不会显示。下面是我的模板的片段代码

    <?php 

defined('_JEXEC') or die( 'Restricted access' );

JLoader::import('joomla.filesystem.file');


?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<jdoc:include type="head" />
</head>
<body>
<jdoc:include type="modules" name="top" />
<jdoc:include type="component" />
</body>
</html>

显示所有模块内容。只有模块标题不显示。感谢您的提前

4

1 回答 1

1

您的 jdoc 语句缺少 style 属性,该属性定义了使用的模块 chrome 的类型,也就是呈现模块标题的原因。有关详细信息,请参阅http://docs.joomla.org/Module_chrome 。

于 2013-08-05T00:37:43.780 回答