修复PbotCMS文章的状态关闭时,标签仍然显示问题
2024-09-20 00:58:27
理论上,如果后台文章的状态关闭,前台文章生成的标签应该消失,但现在PbotCMS默认情况并没有根据文章的状态隐藏。一般使用可能影响不大,但当用户看到有明显的数量点击,但没有时,这种体验效果很差。现在我们来谈谈如何修复这个问题。标签可以随着文章的状态显示和隐藏。
实现方法
打开此文件 \apps\home\model\ParserModel.php,找到getsorttagss($scode)这个位置的截图
最后找到了它
$result = parent::table('ay_content a')->where("c.type=2 AND a.tags<>''") ->where($scode_arr, 'OR') ->join($join) ->order('a.visits DESC') ->column('a.tags'); return $result; |
将其修改为以下内容并保存
$result = parent::table('ay_content a')->where('a.status=1')->where("c.type=2 AND a.tags<>''") ->where($scode_arr, 'OR') ->join($join) ->order('a.visits DESC') ->column('a.tags'); return $result; |
方法解读
以上方法是在去数据库搜索时添加状态判断where('a.status=1')