亲宝软件园·资讯

展开

dedecms统计文章数量 dedecms统计栏目文章数量实现代码修订版

人气:0
想了解dedecms统计栏目文章数量实现代码修订版的相关内容吗,在本文为您仔细讲解dedecms统计文章数量的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:dedecms,统计,栏目文章数量,下面大家一起来学习吧。
修改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)'/] 

加载全部内容

相关教程
猜你喜欢
用户评论