Discuz 页面不能加载插件的原因和解决方法
模板中,
<!--{subtemplate common/headerF}-->
这样就不能加载
source/class/class_template.php里65行附近代码
$headeradd = $headerexists ? "hookscriptoutput('$basefile');" : '';
如果存在$headerexists,才会在模板里加载钩子代码。
而 $headerexists的定义如下
$headerexists = preg_match("/{(sub)?template\s+[\w\/]+?header\}/", $template);
<!--{subtemplate common/headerF}-->