现在wordpress正在显示博客档案,如下所示
Janauary 2012
但我想要这个
Jan (2)
其中2是1月份的帖子总数。 我该怎么做?
答案 0 :(得分:1)
您必须修改模板并将此<?php the_time('F Y'); ?>
替换为此<?php the_time('M'); ?> (<?php $current_month = date('m'); $count = get_posts("monthnum=$current_month" ); echo count($count); ?>)
,它应该有效。
WordPress使用index.php的“m”参数链接到档案,第一年和第二个月。因此,例如,2012年1月将为index.php?m=201201
。所以,为了链接这个,我们需要创建这样的链接:
<a href="/index.php?m=<?php echo date('Ym'); ?>"> ... </a>