1.找到dedecms会员中心的的目录 member ,然后在目录下用编辑器打开config.php 加入对dede模板解释函数如下:
在78行 require_once(DEDEINC.'/dedetemplate.class.php');下面加入以下代码
require_once(DEDEINC."/arc.partview.class.php");//加入以下函数 元素模板为您解答 <a href="http://www.ys720.com/">www.ys720.com/</a>function pasterTempletDiy($path){global $cfg_basedir,$cfg_templets_skin;$tmpfile = $cfg_basedir.$cfg_templets_skin."/".$path;//模版文件的路径$dtp = new PartView();$dtp->SetTemplet($tmpfile);$dtp->Display();}
调用头部和底部代码为:
//引用dede头部模板<?php pasterTempletDiy("head.htm"); ?>//引用dede尾部模板<?php pasterTempletDiy("footer.htm"); ?>