WP_Queryで投稿件数を取得する
$args = array(
'post_type' => 'post', // 投稿タイプを指定
);
$wp_query = new WP_Query( $args );
$total_post_count = $wp_query->found_posts;
特定のカテゴリーに属する投稿の件数を取得
$args = array(
'post_type' => 'post',
'category_name' => 'カテゴリー名',
);
$wp_query = new WP_Query( $args );
$category_post_count = $wp_query->found_posts;
公開済みの投稿のみの件数を取得
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
);
$wp_query = new WP_Query( $args );
$published_post_count = $wp_query->found_posts;
特定のタグに紐づく投稿の件数を取得
$args = array(
'post_type' => 'post',
'tag' => 'タグ名',
);
$wp_query = new WP_Query( $args );
$tag_post_count = $wp_query->found_posts;