WP Admin: Filter for a Custom Taxonomy and see posts of any/all status ?
Posted
by tzeldin88
on Stack Overflow
See other posts from Stack Overflow
or by tzeldin88
Published on 2010-05-20T04:16:43Z
Indexed on
2010/05/20
4:20 UTC
Read the original article
Hit count: 340
Wordpress
On Admin > Edit Posts (edit.php), how can I filter for a Custom Taxonomy and see posts of ANY status, not just Published?
For example, say I have a Custom Taxonomy "Color"...
These queries find posts of ANY status:
- edit.php?category_name=foo
- edit.php?author=3
- edit.php?tag=foo
And this query works correctly:
- edit.php?color=red&post_status=draft
But this query finds ONLY Published posts:
- edit.php?color=red
© Stack Overflow or respective owner