»
其他服务 » DZ x 2.5游客看不到keyword与description的解决方案
  
|
DZ x 2.5游客看不到keyword与description的解决方案
Discuz X 2.5中游客看不到 keyword 与 description的最终解决方案
需要修改的文件: source/class/helper/helper_seo.php- if($descriptiontext && (CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {
- $seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext);
- }
- if($keywordstext && (CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {
- $seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext);
复制代码 修改为:- if($descriptiontext) {
- $seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext);
- }
- if($keywordstext) {
- $seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext);
复制代码 简单的来说就是去掉&& (CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1) 这个判断语句。
上传,清除缓存,就可以看到演示了。
也可以下载本附件,直接覆盖即可! |
|
|
|
|
|
|