登录状态下正常显示。
退出登录就不显示啦。
修改后如下,退出登录显示,登录之后也显示。
通过修改 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); }