View Single Post
  #1   IP: 49.87.3.53
Old 2015-03-07, 12:27 PM
Kailyn Kailyn is offline
初级会员
 
Join Date: 2012-05-18
Posts: 1
Kailyn 现在声名狼藉
Default 解决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);
}
Reply With Quote