织梦不显示未审核文档的TAG标签

未审核文档的TAG会显示在TAG列表页面, 点击进入TAG标签, 相关的未审核文章不会显示出来, 这样对用户体验是很不好的. DEDECMS暂时没有提供这个功能,所以要解决这个问题, 让织梦CMS不显示未审核文档的TAG, 需要修改TAG标签的文件tag.lib.php

第一种方法

打开 /include/taglib/tag.lib.php 文件

找到

if(!empty($typeid))

{

$addsql = " where typeid='$typeid' ";

}

修改为

$dsql->SetQuery("Select tid From `dede_taglist` where arcrank<=-1");  

        $dsql->Execute();

        $ids = '';

        while($row = $dsql->GetArray())

        {

            $tid = $row['tid'];

            $cquery = "Select count(*) as dd From `dede_taglist` where tid = $tid and arcrank<=-1";

            $crow = $dsql->GetOne($cquery);

            if(!$crow['dd'])

            {

                $ids .= ( $ids=='' ? $row['tid'] : ','.$row['tid'] );

            }

        }

        if($ids != '')

        {

            $addsql= " where id not in($ids) ";

        }

        if(!empty($typeid))

        {

            if($addsql)

            {

                $addsql= " and typeid='$typeid' ";

            }else{

                $addsql= " where typeid='$typeid'" ;

            }

        }

第二种方法

找到

$row['keyword'] = $row['tag'];

在其前边加入:

$rankrowss = $dsql -> GetOne("SELECT count(tid) as rankcount FROM `js_taglist` WHERE tid = $row[id] and arcrank >= 0");

if($rankrowss[rankcount] == 0) continue;

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsfgzf.html