如果你的织梦TAG标签关联过很多已经删除的文档,那么在织梦TAG标签列表页就会出现有页码分页没有数据的情况,如下图所示
这是因为织梦的TAG标签列表核心文件不严谨引起的,我们可以让关联的TAG标签所属的已经删除的文档在TAG表中删除掉就能解决空数据列表问题
打开 /include/arc.taglist.class.php 找到,大概在 129 至 131 行,这3行代码
$cquery = "SELECT COUNT(*) AS dd FROM `dede_taglist` WHERE tid = '{$this->TagInfos['id']}' AND arcrank >-1 "; $row = $this->dsql->GetOne($cquery); $this->TotalResult = $row['dd'];
改成
$this->dsql->SetQuery("SELECT aid FROM `dede_taglist` WHERE tid = '{$this->TagInfos['id']}' AND arcrank>-1 "); $this->dsql->Execute(); while($row=$this->dsql->GetArray()) { $atrow = $this->dsql->GetOne("SELECT id FROM `dede_arctiny` WHERE id='{$row['aid']}' AND arcrank>-1"); if(!is_array($atrow)) { $this->dsql->ExecuteNoneQuery("DELETE FROM `dede_taglist` WHERE aid='{$row['aid']}' "); continue; } $idlists .= ($idlists=='' ? $row['aid'] : ','.$row['aid']); } if($idlists!=='') $this->TotalResult = $row['dd'] = count(explode(',',$idlists));
织梦二次开发QQ群
本站客服QQ号:862782808(点击左边QQ号交流),群号(383578617) 如果您有任何织梦问题,请把问题发到群里,阁主将为您写解决教程!
转载请注明: 织梦模板 » 织梦tag标签列表页有页码但是分页没有数据解决方法