Tell us what you are trying to do?
I want to show the user on his "My Account" how many posts they have published, drafted, and pending review. I'm using View that has two queries:
1) Posts with author the same as the current logged in user
2) Posts with status of any.
I also have a shortcode on the Output Editor to show how many posts in total, [wpv-found-count]... but I can't seem to find in the documentation, any shortcode that shows the number of published, drafted or pending review posts.
This is actually possible to do because our views plugin has a post status filter that you can use to display all the posts of a particular status. See Screenshot
You can just select the posts that you want to display.
Shane, I don't think you understood my request. What you suggested I already have done, as you can see the status below the picture.
What I want to show is the number of published posts, number of drafted posts, and the number of pending posts from that Author.
As you can see on this screenshot, I already have that query filter with the options I want. But the issue is counting how many posts are published, drafted, and pending.
The shortcode [wpv-found-count] only shows how many posts there are in total. Is there a way to filter this shortcode to show how many are published, how many are drafted and how many are pending?
In this case you will need to create 3 of the same views just with the filter different for the status of the post you want to count.
Then you can just use the [wpv-found-count] in each of the respective views. So the view for published post based on the current user will only show the count for the published posts etc.