我的博客侧边栏中有一些代码,用于显示特定类别中的帖子数量。它有效,有点。它只会显示数字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>
这是一个link to the blog。谢谢你的帮助!
答案 0 :(得分:1)
变化:
get_posts('post_type=post&category_name=Software')
要:
get_posts('post_type=post&category_name=Software&numberposts=-1');