网络营销电子商务研究中心

网络营销电子商务研究中心 (https://www.0058.net/index.php)
-   Discuz/SupeSite/X-Space (https://www.0058.net/forumdisplay.php?f=10)
-   -   解决Discuz X3.2 门户关键词keyword与描述description查看源码不显示方法 (https://www.0058.net/showthread.php?t=5029)

Kailyn 2015-03-07 12:27 PM

解决Discuz X3.2 门户关键词keyword与描述description查看源码不显示方法
 
修改文件:
source/class/helper/helper_seo.php
Code:

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);
}

改为

Code:

if($descriptiontext) {
        $seodescription = helper_seo::strreplace_strip_split($searchs, $replaces, $descriptiontext);
}

if($keywordstext) {
        $seokeywords = helper_seo::strreplace_strip_split($searchs, $replaces, $keywordstext);
}



All times are GMT +8. The time now is 03:18 AM.

Powered by vBulletin Version 3.8.7
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.