打开 /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();
}
}
在织梦会员模板其他页面引入默认模板的头部尾部 的标签写法应该是这样了
<?php
pasterTempletDiy("head.htm");
?>
版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!
转载请注明: 织梦会员或插件页面引入默认模板的头部尾部