关于discuzseo关键字不能正确显示问题
discuz门户seo关键字keywords和description不能正确显示
当登陆时就会有出现关键字keywords和description
退出后就没有关键字了。
操作方法
- 01
找到后台目录中 source/class/helper/helper_seo.php的文件
- 02
找到以下字段 if($descriptiontext && (isset($_G['makehtml']) || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) { $seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext); } if($keywordstext && (isset($_G['makehtml']) || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) { $seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext); }
- 03
修改为 if($descriptiontext && (CURSCRIPT == 'portal' || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) { $seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext); } if($keywordstext && (CURSCRIPT == 'portal' || CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) { $seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext); }
- 04
在退出登陆用户后在查看网页,就出现了。