修改include/inc_functions.php文件
实现代码如下:

function GetTotalArc($typeid){ 
  $dsql = new DedeSql(false); 
                if(!empty($typeid)) 
                { 
                  $reids = explode(",",$typeid); 
                  $ridnum = count($reids); 
                  if($ridnum>1){ 
                          $tpsql = ""; 
                    for($i=0;$i<$ridnum;$i++){ 
                                  if($tpsql=="") $tpsql .= " And (".TypeGetSunID($reids[$i],$dsql,''); 
                                  else $tpsql .= " Or ".TypeGetSunID($reids[$i],$dsql,''); 
                    } 
                    $tpsql .= ") "; 
                    $orwhere .= $tpsql; 
                    unset($tpsql); 
                  }else{ 
                          $orwhere .= " And ".TypeGetSunID($typeid,$dsql,''); 
                  } 
                  unset($reids); 
          } 
   $row = $dsql->GetOne("Select count(ID) as dd From #@__archives where typeid>0 $orwhere"); 
   return $row['dd']; 


调用方法
实现代码如下:

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

以上就是【dedecms统计栏目文章数量实现代码修订版】的全部内容了,欢迎留言评论进行交流!

赞(0) 踩(0)

与本文相关的软件

发表我的评论

最新评论

  1. 暂无评论