第一步:打开"/include/common.func.php",该文件5.6版本默认存在,5.7的不存在自己建一个。
然后在该文件中加入一个函数,代码如下:
- function pasterTempletDiy($path)
- {
- require_once(DEDEINC."/arc.partview.class.php");
- global $cfg_basedir,$cfg_templets_dir;
- $tmpfile = $cfg_basedir.$cfg_templets_dir."/".$path;//模版文件的路径
- $dtp = new PartView();
- $dtp->SetTemplet($tmpfile);
- $dtp->Display();
- }
在模板页用以下代码替换原因的调用头部代码
- <?php pasterTempletDiy("default/head.htm");?>