前面有提到,在DEDEcms的/member和/plus文件夹下,有许多模板需要调用当前模板的头部和尾部,但是笔者发现,同时使用同一个变量<?php pasterTempletDiy("head.htm"); ?>会出现问题,plus能正常使用,而会员中心却打不开,其实解决办法很简单,就是单独写变量。方法如下
会员部分打开/member/config.php,在最下面添加如下代码
//引入arc.partview.class.php类处理require_once(DEDEINC."/arc.partview.class.php");function pasterTempletDiy($path){global $cfg_basedir,$cfg_templets_skin;$tmpfile = $cfg_basedir.$cfg_templets_skin."/".$path;//模版文件的路径$dtp = new PartView();$dtp->SetTemplet($tmpfile);$dtp->Display();}
对应模板用
<?php pasterTempletDiy("head.htm"); ?><?php pasterTempletDiy("footer.htm"); ?>
/plus文件部分,把变量pasterTempletDiy换成变量pasterTempletDiy2即可,
//引入arc.partview.class.php类处理//////////////////////////////////////////////////////require_once(DEDEINC."/arc.partview.class.php");function pasterTempletDiy2($path){global $cfg_basedir,$cfg_templets_skin;$tmpfile = $cfg_basedir.$cfg_templets_skin."/".$path;//模版文件的路径$dtp = new PartView();$dtp->SetTemplet($tmpfile);$dtp->Display();}
对应模板用
标签: head, htm, php语法, 会员中心, 模板
上面是“在dede织梦会员中心调用当前模板head.htm和footer.”的全面内容,想了解更多关于 织梦cms 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_429.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!