要实现织梦调用栏目下文章数量总数,织梦58写了以下教程来实现
第一步:打开include/common.func.php文件,在最后的?>之前加上:
复制代码
代码如下:
1
2
3
4
5
6
7
8
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'];
}
//统计结束
第二步: 就可以在模板上用以下代码
复制代码
代码如下:
1
2
3
{dede:channel type='top' typeid=''}
<a href='[field:typelink /]'>[field:typename/]</a> ([field:ID runphp='yes'] @me = GetTotalArc(@me);[/field:ID])
{/dede:channel}
单独调用ID为1栏目下文章数量:
1
{dede:type typeid='1'} [field:ID runphp='yes'] @me = GetTotalArc(@me);[/field:ID]{/dede:type}