Wordpress: Count number of posts, exclude uncategorized Wordpress: Count number of posts, exclude uncategorized wordpress wordpress

Wordpress: Count number of posts, exclude uncategorized


Use the following code and see the output:

$args = array('posts_per_page' => -1,'category' => '-1',);$posts_array = get_posts( $args );echo count($posts_array);

As default, id of uncategorized category is 1.