关键词

tag标签

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

在PbootCMS中,当文章状态被修改为关闭时,前台的tag标签仍然会显示,这是一个常见的问题。本文将介绍如何通过修改程序代码来解决该问题。

步骤如下:

1、打开文件 \apps\home\model\ParserModel.php。

2、找到 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;

3、将代码修改为以下内容:

$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;

4、保存修改后的文件。

以上代码中增加了一个 where('a.status=1') 条件,该条件用于判断文章状态是否为开启,如果状态为关闭,则不会显示相应的tag标签。

通过以上操作,即可成功修复PbootCMS文章状态为关闭时tag标签依旧显示的问题。希望本文对您有所帮助!


本文链接:http://task.lmcjl.com/news/13432.html

展开阅读全文