太阳花工作室
discuz门户seo关键字keywords和description不能正确显示 - Discuz!
post by:sunshine 2014-10-6 1:46

登录状态下正常显示。

点击查看原图

退出登录就不显示啦。

点击查看原图

修改后如下,退出登录显示,登录之后也显示。

点击查看原图

 

通过修改 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);
}