实现这个效果有两种
第一种:runphp=’yes’
织梦自带的runphp参数,在您要统计数目的处插手以下代码:
{dede:field.typeid runphp='yes'}
global $dsql;
$row = $dsql->GetOne("select count(*) as dd from dede_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 dede_archives where typeid = $tid");
return $row['dd'];
}
调用方法:{dede:field.typeid function=GetTypeNum(@me)/}