DEDE留言板調(diào)用導(dǎo)航的方法 DEDE插件模板下載標(biāo)簽解析
時間: 2019-05-13 11:27
閱讀: 次
作者:素材無憂網(wǎng)
第一步:打開"/include/common.func.php",該文件5.6版本默認存在,5.5的不存在自己建一個。
然后在該文件中加入一個函數(shù),代碼如下:
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
用以下代碼替換原因的調(diào)用頭部代碼
<?php
pasterTempletDiy("/head.htm");
?>
其他的同理
5.7版本上的調(diào)用
if ( ! function_exists('pasterTempletDiy'))
{
function pasterTempletDiy($path)
{
require_once(DEDEINC."/arc.partview.class.php");
global $cfg_basedir,$cfg_templets_dir,$cfg_df_style;
$tmpfile = $cfg_basedir.$cfg_templets_dir."/".$cfg_df_style."/".$path;//模版文件的路徑
$dtp = new PartView();
$dtp->SetTemplet($tmpfile);
$dtp->Display();
}
}
標(biāo)簽: