1. 修改文件\apps\home\model\ParserModel.php
  2. 找到并修改代码
    php
     
    $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;