注意:dede_archives这是系统默认的数据库表,如果你修改过表前缀dede_,请自行更改表名。在以下示例的标签中,有一部分只写出了SQL语句,具体的完整标签写法请参考:织梦SQL标签调用方法
共有文章:** 篇
1 |
{dede:sql sql= "select count(ID) as c from dede_archives where channel=1" }·共有文章:[field:c /]篇{/dede:sql} |
|
共有图集:** 个
1 |
{dede:sql sql= "select count(ID) as c from dede_archives where channel=2" }·共有图集:[field:c /]个{/dede:sql} |
|
共有软件:** 个
1 |
{dede:sql sql= "select count(ID) as c from dede_archives where channel=3" }·共有软件:[field:c /]个{/dede:sql} |
|
共有评论:**条
1 |
{dede:sql sql= "select count(ID) as c from dede_feedback" }·共有评论:[field:c /]条{/dede:sql} |
|
共有会员:**名
1 |
{dede:sql sql= "select count(ID) as c from dede_member " }共有会员:[field:c /]名{/dede:sql} |
2 |
{dede:sql sql= "select count(mid) as c from dede_member " }共有会员:[field:c /] 名{/dede:sql} |
|
文章阅读:** 人次
1 |
{dede:sql sql= "select sum(click) as c from dede_archives" }文章阅读:[field:c /]人次{/dede:sql} |
|
今日更新:**篇
1 |
{dede:sql sql= "SELECT count( ID ) AS c FROM dede_archives WHERE pubdate > UNIX_TIMESTAMP( CURDATE( ) ) " }今日更新:[field:c /]篇{/dede:sql} |
|
24小时发布的新文章:
1 |
select count( id )+0 as total from dede_archives where UNIX_TIMES*****P() - pubdate < 86400 and arcrank >=0; |
2 |
//86400 是 3600 * 24,也就是24小时发布的新文章。 |
|
当天发布的最新文章
1 |
SELECT count(ID) as count from dede_archives where pubdate > UNIX_TIMES*****P( FROM_UNIXTIME(UNIX_TIMES*****P(), '%Y-%m-%d 00:00:00' )) limit 1; |
|
当天审核通过的最新文章
1 |
SELECT count(ID) as count from dede_archives where pubdate > UNIX_TIMES*****P( FROM_UNIXTIME(UNIX_TIMES*****P(), '%Y-%m-%d 00:00:00' )) and arcrank >0 limit 1; |
|
当天审核通过的最新文章
1 |
where to_days(curdate())=to_days(from_unixtime(pubdate)) and arcrank=0 |
|
本月更新:**篇
1 |
{dede:sql sql= "SELECT count( ID ) AS c FROM cn_archives WHERE FROM_UNIXTIME( pubdate, '%m' ) = month (curdate( )) " } ○ 本月更新:<strong>[field:c /]</strong> 篇;{/dede:sql} |
|
文章收藏次数:
1 |
[field:ID runphp= 'yes' ]$dsql = new dedesql();$dsql -> SetQuery( "select count(*) as c from cn_member_stow where aid=" .@me);$nic_row = $dsql -> getone();@me=$nic_row[ 'c' ];[/field:ID] |
|
统计指定栏目及所有下属分支栏目内的文章数
1、修改include/inc_functions.php文件,增加函数如下:
1 |
function GetTotalArc($tid){ |
2 |
$dsql = new DedeSql( false ); |
3 |
$sql = TypeGetSunID($tid,$dsql); |
4 |
$row = $dsql->GetOne( "Select count(ID) as dd From dede_archives where {$sql}" ); |
|
2、调用方法,在需要修改的模板页插入如下代码(其中的3是栏目ID,根据你的实际情况修改)
1 |
{dede:field function = 'GetTotalArc(3)' /} |
|
补充一点:如果在栏目模板页面上调用,可以用这个写法,统计当前栏目内的文章数
1 |
{dede:field name= 'ID' function = 'GetTotalArc(@me)' /} |
|
栏目文章统计功能,使用 dedecms 的runphp 接口 编写一个 函数。利用channel标签的ID变量获得函数。
1 |
function GetChannelArticleNum($ id ){ |
2 |
if (!$ id || !is_numeric($ id )) return 0; |
4 |
require_once( dirname (__FILE__)。 "/inc_channel_unit_functions.php" ); |
5 |
$sql = TypeGetSunID($ id ,$dsql); |
6 |
$dsql -> SetQuery( "Select count(*) as c From dede_archives where {$sql}" ); |
7 |
$row = $dsql -> GetOne(); |
|
将该函数放入 inc_functions.php 中,示例调用方法:
1 |
{dede:channel type = 'top' row= '8' } | [field:typename/] ([field:ID runphp= 'yes' ] @me = GetChannelArticleNum(@me);[/field:ID]){/dede:channel} |
|
增加栏目文章统计功能
第一种方法:
修改include/inc_arcpart_view.php文件,找到function ParseTemplet()函数,修改为:
01 |
function ParseTemplet() |
03 |
if (!is_array($this->dtp->CTags)) return "" ; |
04 |
foreach($this->dtp->CTags as $tagid=>$ctag) |
06 |
$tagname = $ctag->GetName(); |
08 |
if ( $tagname == "countclass" ){ |
09 |
$tid = $ctag->GetAtt( "typeid" ); |
10 |
$row = $this->dsql->GetOne( "Select count(ID) as dd From dede_archives where typeid='$tid' and arcrank<>-1" ); |
11 |
$this->dtp->Assign($tagid,$row[ 'dd' ]); |
|
调用方法:{dede:countclass typeid='栏目编号'/}
第二种方法:
修改include/inc_functions.php文件,增加函数如下:
1 |
function GetTotalArc($tid){ |
2 |
$dsql = new DedeSql( false ); |
3 |
$row = $dsql->GetOne( "Select count(ID) as dd From dede_archives where typeid='$tid'" ); |
|
调用方法:[field:id function='GetTotalArc(@me)'/]