DedeCMS默認在欄目列表頁沒有調(diào)用當前欄目內(nèi)容數(shù)量的標簽,但有時候我們做網(wǎng)站時又需要調(diào)用這個數(shù)量。
下面就告訴大家兩種方法:
第一種方法:修改include/inc_arcpart_view.php文件
找到function ParseTemplet()函數(shù)
修改為:
function ParseTemplet() {
if(!is_array($this->dtp->CTags)) return "";
foreach($this->dtp->CTags as $tagid=>$ctag) {
$tagname = $ctag->GetName(); //countclass 統(tǒng)計欄目文章數(shù)量
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']);
}
調(diào)用標簽:
{dede:countclass typeid=欄目ID/}
例如:
{dede:countclass typeid='2′/}
第二種方法:修改include/inc_functions.php文件,增加函數(shù)如下:
function GetTotalArc($tid){ $dsql = new DedeSql(false);
$row = $dsql->GetOne("Select count(ID) as dd From tufei_archives where typeid='$tid'");
return $row['dd'];
}
調(diào)用標簽:
[field:id function='GetTotalArc(@me)'/]
這樣就能統(tǒng)計并顯示欄目內(nèi)容數(shù)量了
|