织梦会员模板其他页面引入默认模板的头部尾部
作者: 本站原创 发布时间: 浏览: 次
我们都知道织梦前台模板调用头部和尾部标签是{dede:include filename="*.htm"/} ,但是用到会员中心模板就无效,今天我们介绍一个方法来完成会员模板调用前台模板。
1:打开 /include/extend.func.php 在文件的最下面加入一个方法:
/** * 其他页面调用模板的头部尾部模板 * * @access public * @param string $path 模板路径 * @return string */ if(!function_exists('pasterTempletDiy')) { function pasterTempletDiy($path) { require_once(DEDEINC."/arc.partview.class.php"); global $cfg_basedir,$cfg_templets_dir,$cfg_df_style; $tmpfile = $cfg_basedir.$cfg_templets_dir.'/'.$cfg_df_style.'/'.$path; $dtp = new PartView(); $dtp->SetTemplet($tmpfile); $dtp->Display(); } } |
2:在织梦会员模板其他页面引入默认模板的头部尾部 的标签写法
<?php pasterTempletDiy("head.htm"); ?> |