适用于dedecms 5.7 问答标签全局化:
加在/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(); |
} |
|
然后问答模板中加入新路径,此路径为全局路径,可以共享其他模版
|
pasterTempletDiy("default/head.htm"); |
?> |
dedecms 5.6 问答可加在 /include/common.func.php 后面