当前位置: 首页 > 站长资讯 > 正文页面

dede中统计栏目文章数的两种方法

本文主要介绍了dede中统计栏目文章数的两种方法,经测试都可以实现,可以根据需要进行选择ZaL网站目录_网站网址收录与提交入口

方法一:ZaL网站目录_网站网址收录与提交入口

涉及到文件:include/common.func.phpZaL网站目录_网站网址收录与提交入口

在include/common.func.php最下面也就是?>前加入以下代码ZaL网站目录_网站网址收录与提交入口

function GetTotalArc($tid){ZaL网站目录_网站网址收录与提交入口

global $dsql;ZaL网站目录_网站网址收录与提交入口

$sql = GetSonIds($tid);ZaL网站目录_网站网址收录与提交入口

$row = $dsql->GetOne("Select count(id) as dd From dede_archives where typeid in({$sql})");ZaL网站目录_网站网址收录与提交入口

return $row['dd'];ZaL网站目录_网站网址收录与提交入口

}ZaL网站目录_网站网址收录与提交入口

调用方法:ZaL网站目录_网站网址收录与提交入口

[field:ID function='GetTotalArc(@me)'/]ZaL网站目录_网站网址收录与提交入口

ZaL网站目录_网站网址收录与提交入口

[field:ID runphp='yes'] @me = GetTotalArc(@me);[/field:ID]ZaL网站目录_网站网址收录与提交入口

比如在你的主页模板里添加如下代码:ZaL网站目录_网站网址收录与提交入口

共{dede:type}[field:ID function='GetTotalArc(@me)'/] {/dede:type}篇ZaL网站目录_网站网址收录与提交入口

或在栏目名称后面添加如下代码:ZaL网站目录_网站网址收录与提交入口

({dede:type}[field:ID function='GetTotalArc(@me)'/] {/dede:type})ZaL网站目录_网站网址收录与提交入口

方法二:ZaL网站目录_网站网址收录与提交入口

第一步:打开include/common.func.php文件,在最后的?>之前加上:ZaL网站目录_网站网址收录与提交入口

代码如下:ZaL网站目录_网站网址收录与提交入口

//统计栏目文章数ZaL网站目录_网站网址收录与提交入口

function GetTotalArc($tid){ZaL网站目录_网站网址收录与提交入口

global $dsql;ZaL网站目录_网站网址收录与提交入口

$sql = GetSonIds($tid);ZaL网站目录_网站网址收录与提交入口

$row = $dsql->GetOne("Select count(id) as dd From dede_archives where typeid in({$sql})");ZaL网站目录_网站网址收录与提交入口

return $row['dd'];ZaL网站目录_网站网址收录与提交入口

}ZaL网站目录_网站网址收录与提交入口

//统计结束ZaL网站目录_网站网址收录与提交入口

第二步: 就可以在模板上用以下代码ZaL网站目录_网站网址收录与提交入口

代码如下:ZaL网站目录_网站网址收录与提交入口

{dede:channel type='top' typeid=''}ZaL网站目录_网站网址收录与提交入口

<a href='[field:typelink /]'>[field:typename/]</a> ([field:ID runphp='yes'] @me = GetTotalArc(@me);[/field:ID])ZaL网站目录_网站网址收录与提交入口

{/dede:channel}ZaL网站目录_网站网址收录与提交入口

比如在主页模板上栏目名称({dede:field name='typename'/})ZaL网站目录_网站网址收录与提交入口

后面添加如下代码:ZaL网站目录_网站网址收录与提交入口

代码如下:ZaL网站目录_网站网址收录与提交入口

{dede:type}[field:ID runphp='yes'] @me = GetTotalArc(@me);[/field:ID]{/dede:type}ZaL网站目录_网站网址收录与提交入口

亲测可用,可以自行选择喜欢的方法!ZaL网站目录_网站网址收录与提交入口

源码技术交流QQ群 417105134ZaL网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章