Discuz X3/3.1版本的Keyword和Description不能正常显示
最近用站长工具查论坛的SEO的时候,忽然发现,论坛门户的Keyword(关键词)和Description(描述)都只剩下门户俩字了。原来Discuz对游客屏蔽了关键词与描述。虽然说用管理员账号登陆后,可以正常显示了。不过很难说蜘蛛或Robot是不是可以真正能获取。所以为了收录,还是改回来吧。具体方法为:
找到文件“source/class/helper/helper_seo.php”这个文件
搜索:
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); }
修改为:
if($descriptiontext) { $seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext); } if($keywordstext) { $seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext); }
最后登出后,再用游客身份查看源代码,已经可以看到Description和Keyword了,在用站长SEO工具测试一下,就可以了。
Discuz X3/3.1版本的Keyword和Description不能正常显示的解决方案小编都给大家整理出来了,希望这篇文章能帮助到你解决问题。
本文网址:https://www.dedexuexi.com/jzjc/dzjc/3551.html
本站部分文章搜集与网络,如有侵权请联系本站,转载请说明出处。