如果你想知道某个特定类别中所有已发布帖子的总数,你可以试试这个。
$all_posts = new WP_Query( array( \'posts_per_page\' => -1, \'post_status\' => \'publish\', \'cat\' => 3 ) );
echo $all_posts->post_count;
或
$all_posts = new WP_Query( array( \'posts_per_page\' => -1, \'post_status\' => \'publish\', \'category_name\' => \'uncategorized\' ) );
echo $all_posts->post_count;
只需确保将“category\\u name”或“cat”替换为所需的类别即可。