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 dede_archives where typeid='$tid' and arcrank<>-1"); $this->dtp->Assign($tagid,$row['dd']); } …… 2、 在網頁上調用方法 {dede:countclass typeid=欄目編號/} 例如: {dede:countclass typeid='2′/}
第二種方法(由 正牌執子之手339709 提供):
1、修改include/inc_functions.php文件,增加函數如下:
function GetTotalArc($tid){ $dsql = new DedeSql(false); $row = $dsql->GetOne("Select count(ID) as dd From dede_archives where typeid='$tid'"); return $row['dd']; } 2、調用方法