時間:2021-07-15人氣:-
本文主要介紹 Discuz X3/3.1 門戶中keywords和description對游客顯示不正確的解決方法
打開 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);
}
上篇:discuz-redis 擴展 輕松快速分頁 避免分頁瓶頸
下篇:Discuz教程:修改或者刪除首頁底部防水墻圖標鏈接的方法