织梦DedeCMS列表页调用当前栏目下内容数量的方法

  DedeCMS默认在栏目列表页没有调用当前栏目内容数量的标签,但有时候我们做网站时又需要调用这个数量。   下面就告诉大家两种方法:   第一种方法:修改include/inc_arcpart_view.php文件   找到function ParseTemplet()函数   修改为:   function ParseTemplet()  { if(!is_array($this->dtp->CTags)) return ""; foreach($this->dtp->CTags as $tagid=>$ctag)  { $tagname = $ctag->GetName();  //countclass 统计栏目文章数量 if( $tagname == "countclass" ){ $tid = $ctag->GetAtt("typeid"); $row = $this->dsql->GetOne("Select count(ID) as dd From tufei_archives where typeid='$tid' and arcrank<>-1"); $this->dtp->Assign($tagid,$row['dd']); }   调用标签:   {dede:countclass typeid=栏目ID 本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!
本文关键词:

联系我们

在线咨询:点击这里给我发消息

邮件:w420220301@qq.com