方法一:
涉及到文件:include/common.func.php
在include/common.func.php最下面也就是?>前加入以下代碼
代碼如下:
function gettotalarc($tid){
global $dsql;
$sql = getsonids($tid);
$row = $dsql->getone(select count(id) as dd from dede_archives where typeid in({$sql}));
return $row['dd'];
}
調(diào)用方法:
代碼如下:
[field:id function='gettotalarc(@me)'/]
或
[field:id runphp='yes'] @me = gettotalarc(@me);[/field:id]
比如在你的主頁模板里添加如下代碼:
代碼如下:
共{dede:type}[field:id function='gettotalarc(@me)'/] {/dede:type}篇
或在欄目名稱后面添加如下代碼:
({dede:type}[field:id function='gettotalarc(@me)'/] {/dede:type})
方法二:
第一步:打開include/common.func.php文件,在最后的?>之前加上:
代碼如下:
//統(tǒng)計(jì)欄目文章數(shù)
function gettotalarc($tid){
global $dsql;
$sql = getsonids($tid);
$row = $dsql->getone(select count(id) as dd from dede_archives where typeid in({$sql}));
return $row['dd'];
}
//統(tǒng)計(jì)結(jié)束
第二步: 就可以在模板上用以下代碼
代碼如下:
{dede:channel type='top' typeid=''}
<a href='[field:typelink /]'>[field:typename/]</a> ([field:id runphp='yes'] @me = gettotalarc(@me);[/field:id])
{/dede:channel}
比如在主頁模板上欄目名稱({dede:field name='typename'/})
后面添加如下代碼:
代碼如下:
{dede:type}[field:id runphp='yes'] @me = gettotalarc(@me);[/field:id]{/dede:type}