如何解决discuz x3.2门户首页关键词描述不显示
方法/步骤
用FTP工具登录网站根目录。找到“ source/class/helper/helper_seophp ”目录下的文件
将该文件传输到电脑本地,准备对该文件进行编辑
用网站编辑工具打开helper_seophp,查找到这段代码:
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);}
5
保存后上传该文件到网站原目录下替换掉原来的文件,到这里就顺利完成了。登出账号,以游客的身份查看关键词和描述显示正常,还可以用SEO站长工具再查一遍
可以登录到网站后台,通过后台中,论坛版块,也就是你添加论坛版块分类的地方,在左侧,有开启首页四格的功能
discuz论坛自带的首页四格功能不错,可以通过具体的细节设置来更好的展示网站,崇知阁discuz论坛上也有开启,看起来是不是挺不错
0条评论