首页 > CMS > 织梦DEDE > 正文

“相关文章”不相关问题的一个简单解决方法_DedeCms教程

2024-08-30 19:09:42
字体:
来源:转载
供稿:网友

inc_archives_view.php 文件
原代码,取的是相近文章,即前后“邻居”
if($tagname=="likeart") $keywords = ""; //str_replace(" ",",",trim($this->Fields['keywords']));
else $keywords = $ctag->GetAtt('keyword');


修改为
if($tagname=="likeart") $keywords = str_replace(" ",",",trim($this->Fields['keywords']));
else $keywords = $ctag->GetAtt('keyword');


另外后台系统设置:使用关键词关连文章,选择 是

注意:修改后影响html生成效率!

官方原帖:http://bbs.dedecms.com/read.php?tid=44601

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表