Home > php教程 > php手册 > dedeCMS织梦留言板调用网站head的方法

dedeCMS织梦留言板调用网站head的方法

WBOY
Release: 2016-06-13 09:36:25
Original
1394 people have browsed it

dedecms留言板 头部调用 修改方法:
 
第一部:我们需要打开"/include/common.func.php",这个文件5.6版本默认存在,5.5的不存在我们可以建一个,这个文件功能是用来解析模版的
 
也可以打开"include/extend.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();
}
Copy after login

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

",
 
用以下代码替换原来的调用头部代码
<?php pasterTempletDiy("default/head.htm");
Copy after login

以上就是了,希望对各位有帮助。

您可能感兴趣的文章

  • dedeCMS(织梦)网站服务器目录安全设置经验分享
  • 织梦dede标签调用汇总
  • 程序中通过define定义的常量如何在smarty模板中使用
  • 如何去除codeIgniter开发的网站url里面的index.php字符串
  • window.navigate 与 window.location.href 的使用区别详解
  • dedeCMS中提示DedeTag Engine Create File False的错误的解决办法
  • 三种加强织梦CMS安全性的方法推荐
  • Google博客搜索启用ping功能实现网站内容实时收录
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template