首页 >

织梦DedeCMS留言板调用导航的方法

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
用以下代码替换原因的调用头部代码
复制代码
其他的同理
		
	

  • 织梦DedeCMS后台添加图片style全部都变成st<x>yle的解决教
  • 织梦DedeCMS后台添加图片style全部都变成st<x>yle的解决教 | 织梦DedeCMS后台添加图片style全部都变成st<x>yle的解决教 ...

  • 织梦DedeCMS /member/reg_new.php SQL注入漏洞
  • 织梦DedeCMS /member/reg_new.php SQL注入漏洞 | 织梦DedeCMS /member/reg_new.php SQL注入漏洞 ...

  • 织梦DedeCMS点击数过千、万、亿的写法
  • 织梦DedeCMS点击数过千、万、亿的写法 | 织梦DedeCMS点击数过千、万、亿的写法 ...