DedeCMS文章列表页自动统计当前栏目文档总数的方

实现这个功能有两种具体的方法: 第一种:runphp=’yes’ 利用织梦自带的runphp参数来实现这个功能,只需要在您需要显示统计数量的地方直接加入以下代码 {dede:field.typeid runphp='yes'}glob
实现这个功能有两种具体的方法:
  第一种:runphp=’yes’
  利用织梦自带的runphp参数来实现这个功能,只需要在您需要显示统计数量的地方直接加入以下代码
  1. {dede:field.typeid runphp='yes'}
  2.         global $dsql;
  3.         $row = $dsql->GetOne("select count(*) as dd from dede_archives where typeid = @me");
  4.         @me = $row['dd'];
  5. {/dede:field.typeid}


  第二种:function
  我们通常所说的函数,在织梦(DedeCMS)中,我们可以利用自定义函数来实现各种效果,实现的具体方法为:
  在/include/extend.func.php文件的?>上一行加入以下代码:
  1. function _GetTypeNum($tid){
  2.   global $dsql;
  3.   $row = $dsql->GetOne("select count(*) as dd from dede_archives where typeid = $tid");return $row['dd'];
  4. }


  在模板需求统计栏目文档的地方加入以下代码:
  1. {dede:field.typeid function="GetTypeNum(@me)"/
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐