$posts = get_posts( 'numberposts=-1&category=分类id1,分类id2,分类id3' );
参数说明:
numberposts (整数)将要返回的文章数量。将其设为0可在每页上显示最大数量文章数,设为-1可消除限制。
category(整数)仅显示本分类编号下的文章。将分类编号设为负数(如果是3,设为-3),显示结果不匹配。用逗号将分类编号隔开,或传递编号数组,可指定多个分类编号。
返回的$posts
是个数组,直接count()
一下就可以得到数目了
$number = count($posts);
--- 2012-09-18 20:56:48 更新 ---
想要在模板里直接显示这个数目,请插入以下代码:
<?php
$posts = get_posts( 'numberposts=-1&category=分类id1,分类id2,分类id3' );
echo count($posts);
?>