dede里的留言板guestbook.htm用{dede:include filename=../default/head.htm/}不能自动生成导航列表,不能使用default下的头文件,现在我来写一个函数解决这问题: 第一步:打开/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/plus/guestbook.htm
<?php pasterTempletDiy("default/head.htm"); ?>其他的同理