日期:2014-05-29 阅读:2286
dmandwp系统 - wordpress系统和DM系统区块建站>>
在joomla的模板文件里,有一行代码是 <jdoc:include type="head" />
那这个head是哪个文件呢?
如果是在wordpress,有一个header.php的模板文件和wp_head(),修改很方便。
但是joomla里,却有很大的不同。
这个文件在 libraries/joomla/document/html/renderer/head.php
新版换了,在 libraries\joomla\document\renderer\html\head.php
但是请注意,不要去改这个文件。因为这是核心文件,不是模板文件。
如果要加css,js,要通过另外的方法来实现。
从模板文件index.php可以看到,代码如下:
$doc->addScript('templates/' .$this->template. '/js/template.js');
// 加css
$doc->addStyleSheet('templates/'.$this->template.'/css/template.css');
-------------------
延伸阅读: joomla t3的head产生谷歌字体>