如果想要完全放开SEO设置给游客看,那么可以
将
1. if($descriptiontext && (CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {
2. $seodescription = strreplace_strip_split($searchs, $replaces, $descriptiontext);
3. }
4. if($keywordstext && (CURSCRIPT == 'forum' || IS_ROBOT || $_G['adminid'] == 1)) {
5. $seokeywords = strreplace_strip_split($searchs, $replaces, $keywordstext);
6. }
复制代码
修改为:
1. if($descriptiontext) {
2. $seodescription = strreplace_strip_split($searchs, $replaces, $descriptiontext);
3. }
4. if($keywordstext) {
5. $seokeywords = strreplace_strip_split($searchs, $replaces, $keywordstext);
6. }
复制代码 |