Advanced WordPress Admin Tip: Posts By Category
January 7th, 2010 by Stephen Cronin (2,476 views)Go to Posts -> Edit in the WordPress Admin area and you’ll see a list of all the posts you have. There is a dropdown list called View all categories, which allows you to select a single category to view posts from. But…
What if you want to view posts from more than one category, or better yet, want to exclude posts from certain categories? Can’t do it right? Well not through the WordPress interface, but you can do it through URL parameters.
Finding Out Your Category Numbers
To make this work, you’ll need to know the category numbers for your categories. You can find these through either of the following two methods:
- Go to Posts -> Category screen and hold your mouse over the category in question. In your browser’s status bar you will see a URL which ends in ID=xx (xx is the number of the category).
OR
- While still in Posts -> Edit, select the category you want in the dropdown list and click Filter. You’ll be taken to a page showing only posts from that category. In the browser’s address bar you’ll see that the URL contains cat=xx (xx is the number of the category).
The first method is quicker if you want to look up multiple category numbers (you may want to write them down). The second method is better if you’re just after one or two category numbers – you’ll need to do this step anyway.
First Step
By default, the Posts -> Edit screen has a URL that ends in wp-admin/edit.php with no parameters, eg:
http://www.scratch99.com/wp-admin/edit.php
Rather than typing all the parameters, it makes sense to start with a URL that includes them.
If you haven’t already, select one of the categories you want to include / exclude in the dropdown list and click Filter. You’ll be taken to a page showing only posts from that category, but you will now have a URL that looks like this:
http://www.scratch99.com/wp-admin/edit.php?s&mode=list&action=-1&m=0&cat=92&action2=-1
We’re going to be changing the cat=xx part of the URL.
Displaying Posts From More Than One Category
Perhaps I want to display posts from more than one category – in my case, I may want to see all the posts from my WordPress and Web Development categories, but not from the rest of my categories (too much noise).
Easy. Simply edit the URL and change the cat=xx to cat=xx,xx (where xx is the category numbers that you want). In my case, I change the URL to the following (note the cat=4,65):
http://www.scratch99.com/wp-admin/edit.php?s&mode=list&action=-1&m=0&cat=4,65&action2=-1
Want posts from three categories? That’s right:
cat=xx,xx,xx
You’ve got it now!
Excluding Posts From Certain Categories
It’s also possible to exclude posts from certain categories from appearing in the Posts -> Edit screen.
Why would I want to exclude posts from certain categories? Actually, that’s how I started looking into this issue. I haven’t been posting much recently and, as a result, my weekly automatic lifestream digest posts pretty much filled up the screen:

I was having trouble seeing my real posts!
Thankfully it’s easy to exclude the category that these posts are in. Simply edit the URL and change the cat=xx to cat=-xx (where xx is the category number you want). In my case, I change the URL to the following (note the minus sign, eg: cat=-92):
http://www.scratch99.com/wp-admin/edit.php?s&mode=list&action=-1&m=0&cat=-92&action2=-1
The result:

Want to exclude posts from more than one category? That’s right:
cat=-xx,-xx,-xx
Final Thoughts
That’s all – it’s a fairly long post for a fairly simple tip. It’s probably not something that will be needed often, but in some circumstances it’s very useful to have greater control over which posts appear on the Edit Posts screen.



Hey, that is terrific insight. Makes sense now that you’ve pointed out the simple syntax.
Could you take the next step and see what happens when a post is assigned to multiple categories?
Then update this article and reply with a comment. Then I’ll know to come back and re-visit.
Thanks again!
Seem easy to use, but i prefer to make use of the search button to list related post as i might not remember which categories I put them.
Ah, i have been wanting to do that for some time, and your solution seems quite easy to use.
This is very useful if you’re working with a team of people that publish regularly, or even for a single publisher if there’s a lot of content. I use this method regularly, and the way to make it very useful for me is to find the URL I want, changing the parameters and queries as I need them, but then I drag the URL to my Firefox bookmark toolbar, or in some cases I delicious the url so its always handy. It makes publishing and editing batch of similar yet unique posts, very easy and efficient.