Using this code I can easily get the total number of posts:
$post_count = count_user_posts();
echo $post_count;
But I need the total to not include posts that are uncategorized.
Using this code I can easily get the total number of posts:
$post_count = count_user_posts();
echo $post_count;
But I need the total to not include posts that are uncategorized.
You must be logged in to post a comment.
Use the following code and see the output:
As default, id of
uncategorized
category is 1.