服务器之家:专注于服务器技术及软件下载分享
分类导航

DEDECMS|帝国CMS|Discuz|PHPCMS|Wordpress|ZBLOG|ECSHOP|苹果CMS|极致CMS|CMS系统|

服务器之家 - 建站程序 - CMS系统 - 修复PbootCMS文章状态为关闭时tag标签依旧显示问题

修复PbootCMS文章状态为关闭时tag标签依旧显示问题

2023-05-09 21:00未知服务器之家 CMS系统

修复PbootCMS文章状态为关闭时tag标签依旧显示问题,方法如下: 打开这个文件 apps/home/model/ParserModel.php,找到getSortTags($scode), 在其最后找到 $result=parent::table(ay_contenta)-where(c.type=2ANDa.tags)-where($scode_arr,OR)-join($join)-order(a.visitsDESC)-co

修复PbootCMS文章状态为关闭时tag标签依旧显示问题,方法如下:

打开这个文件 apps/home/model/ParserModel.php,找到getSortTags($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')”就可以了。


延伸 · 阅读

精彩推荐