打开/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();
}
加上上面的函数之后,也就可以调用主站下的/templets/default/所有模板文件
{dede:arclist titlelen='100' row='15' orderby='rand'}<li><a href="[field:arcurl/]" title="[field:title/]">[field:title/]</a></li>{/dede:arclist}
自定义gezhan.php文件,内容如下
<?phprequire_once("../../include/common.inc.php");?>
读取公共文件
{dede:include filename=''head.htm/}
就使用
<?php pasterTempletDiy("gezhan/head.htm");?>