我使用这段代码显示某个作者的自定义分类法(“特殊”)的最后三篇帖子:
<?php query_posts( array( \'taxo\' => \'special\', \'showposts\' => 3, \'author\' => 2 ) ); ?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endwhile; endif; ?><p>
现在我想让WordPress也计算这个用户用这个分类法发表的帖子总数,并显示数字,有人知道这是怎么回事吗?
提前谢谢。
最合适的回答,由SO网友:Rohit Pande 整理而成
$args = array(
\'taxonomy\' => \'special\',
\'posts_per_page\' => -1,
\'author\' => 2
);
$author_category_posts = new WP_Query($args);
$count_of_posts_by_author = $author_category_posts->post_count;
您可以获取该作者在特定分类法中发表的帖子数量。