0

我的博客侧边栏中有一些代码,旨在显示特定类别中的帖子数量。它有效,有点。它只会显示到数字 5,然后停止更新帖子计数。关于如何解决的任何想法?

这是其中一个类别的代码:

<?php 
   $count_posts = get_posts('post_type=post&category_name=Software') 
?>
   <li id="nav1">
   <a class="<?php if ($current_cat == get_cat_ID('Software')) echo "software-active active"; ?>" href="<?php echo get_category_link(get_cat_ID('Software')) ?>" title="Software">Software (<?php echo count($count_posts) ?>)</a>

这是博客的链接。感谢您的帮助!

4

1 回答 1

1

改变:

get_posts('post_type=post&category_name=Software')

至:

get_posts('post_type=post&category_name=Software&numberposts=-1');
于 2012-05-04T17:33:08.270 回答