特定の投稿者が公開している記事の数を表示させる

テーマ

wptheme_author_count

投稿者が複数いる場合などに、どの投稿者がいくつ記事を公開しているかを見せるには
the_author_posts() を使用します。
下書きや非公開の記事は含まれません。

the_author_posts() 特定の投稿者の公開記事数を表示します。記事ループ内で使用。
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

	<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>

	<p><?php the_author(); ?>(<?php the_author_posts(); ?>記事公開中)</p>

<?php endwhile; ?>
<?php endif; ?>
投稿者1(32記事公開中)

このように表示されます。

テーマ

関連記事