织梦dedecms列表页中调用当前栏目文章总数的办法

实现这个效果有两种 第一种:runphp=yes 织梦自带的runphp参数,在您要统计数目的处插手以下代码: {dede:field.typeid runphp=yes} global $dsql; $row = $dsql-GetOne(select count(*) as dd from wmd_archives wher

实现这个效果有两种
 
第一种:runphp=’yes’
织梦自带的runphp参数,在您要统计数目的处插手以下代码:
 
{dede:field.typeid runphp='yes'}   
global $dsql;   
$row = $dsql->GetOne("select count(*) as dd from wmd_archives where typeid = @me");   
@me = $row['dd'];   
{/dede:field.typeid}
 
第二种:利用function
打开:/include/extend.func.php这个文件,在最底部的
 
?>
上一行加入代码:
 
function  GetTypeNum($tid){   
global $dsql;   
$row = $dsql->GetOne("select count(*) as dd from wmd_archives where typeid = $tid");   
return $row['dd'];   
}

调用方法:{dede:field.typeid function=
GetTypeNum(@me)/}
 

版权声明:本站部分内容来源互联网,如果文章中所涉及的图片或者文字内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

织梦dedecms列表页中调用当前栏目文章总数的办法

最新VIP资源