DEDE留言板调用导航的方法

dede里的留言板guestbook.htm用{dede:include filename=”../default/head.htm”/}不能自动生成导航列表,不能使用default下的头文件,现在我来写一个函数解决这问题:

第一步:打开"/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();
}

第二步,打开留言本的模版文件,默认的是/templets/plus/guestbook.htm

用以下代码替换原因的调用头部代码
<?php
   pasterTempletDiy("default/head.htm");
?>
其他的同理

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/c3638ac736888b2ddfc4e7643a40b6c2.html