我一直在为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>
显示所有模块内容。仅显示模块标题。谢谢你的提前
答案 0 :(得分:1)
你的jdoc语句缺少style属性,它定义了使用模块chrome的类型,这是呈现模块标题的内容。有关详细信息,请参阅http://docs.joomla.org/Module_chrome。