discuz门户seo关键字keywords和description不能正确显示 - Discuz!
类别:win_lin_mac
post by sunshine / 2014-10-6 09:46 Monday
登录状态下正常显示。
退出登录就不显示啦。
修改后如下,退出登录显示,登录之后也显示。
通过修改 source/function/function_core.php 文件。
找到以下内容:
if($descriptiontext && (CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) { $seodescription = strreplace_strip_split($searchs, $replaces, $descriptiontext); } if($keywordstext && (CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) { $seokeywords = strreplace_strip_split($searchs, $replaces, $keywordstext); }
修改成方案一
if($descriptiontext && (CURSCRIPT == 'portal'||CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) { $seodescription = strreplace_strip_split($searchs, $replaces, $descriptiontext); } if($keywordstext && (CURSCRIPT == 'portal'||CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) { $seokeywords = strreplace_strip_split($searchs, $replaces, $keywordstext); }
或者修改成方案二
if($descriptiontext ) { $seodescription = strreplace_strip_split($searchs, $replaces, $descriptiontext); } if($keywordstext) { $seokeywords = strreplace_strip_split($searchs, $replaces, $keywordstext); }
版权所有:《太阳花工作室》 => 《discuz门户seo关键字keywords和description不能正确显示 - Discuz!》
本文地址:http://bg.artuion.com/win_lin_mac/310.html
除非注明,文章均为 《太阳花工作室》 原创,欢迎转载!转载请注明本文地址,谢谢。