DedeCMS默認(rèn)在欄目列表頁(yè)沒(méi)有調(diào)用當(dāng)前欄目?jī)?nèi)容數(shù)量的標(biāo)簽,但有時(shí)候我們做網(wǎng)站時(shí)又需要調(diào)用這個(gè)數(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)計(jì)欄目文章數(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)用標(biāo)簽:
{dede:countclass typeid=欄目ID