首页 > CMS教程 > 织梦CMS    日期:2019-08-09 / 来自互联网 / 浏览

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/}

例如:

{dede:countclass typeid='2'/}

第二种方法:修改include/inc_functions.php文件,增加函数如下:

function GetTotalArc($tid){  $dsql = new DedeSql(false);
      $row = $dsql->GetOne("Select count(ID) as dd From tufei_archives where typeid='$tid'");
      return $row['dd'];
}

调用标签:

[field:id function='GetTotalArc(@me)'/]

这样就能统计并显示栏目内容数量了

觉得上面的内容有用吗?快来点个赞吧!

点赞() 我要打赏

温馨提示 : 本站内容来自会员投稿以及互联网,所有源码及教程均为作者总结编辑,请大家在使用过程中提前做好备份,以免发生无法预知的错误,源码类教程请勿直接用于生产环境!

 可能感兴趣的文章