Posts Tagged ‘DEDECMS留言板模板’

DEDECMS5.7留言板调用模板文件head.htm的方法

夏风 Posted in 做网站,Tags: , ,
0

仿企业站时遇到了这个问题,百度到这个方法:

首先找到include/common.func.php这个文件,

然后加这个文件最后面,?>这个前面加上:

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();
}
function pasterTempletDiy2($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);
$temstr = $dtp->GetResult();
return $temstr;
}

然后在留言板文件中templets/plus/guestbook.htm

加入如下代码即可引入导航栏。

<?php
pasterTempletDiy(“default/head.htm”);
?>