织梦模板DEDECMS不显示未审核tag标签文档的的方法
导读:织梦教程织梦教程未审核文档的TAG会显示在TAG列表页面, 固然点击进入TAG时, 相关的未审核文章不会显示出来, 这样对用户体验是很不好的. DEDECMS暂时没有提供这个功dede模板免费模板织梦。
未审核文档的TAG会显示在TAG列表页面, 固然点击进入TAG时, 相关的未审核文章不会显示出来, 这样对用户体验是很不好的. DEDECMS暂时没有提供这个功能,所以要解决这个问题, 让DEDECM织梦cms模板S不显示未审核文档的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=='' ? $ro织梦模板w['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 `dede_taglist` WHERE tid = $row[id] and arcrank >= 0"); if($rankrowss[rankcount] == 0) continue;相关dede模板免费模板织梦。
声明: 本文由我的SEOUC技术文章主页发布于:2023-07-17 ,文章织梦模板DEDECMS不显示未审核tag标签文档的的方法主要讲述标签,模板,CMS网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_28411.html