Opened 15 years ago
Closed 14 years ago
#13710 closed feature request (duplicate)
Query posts with custom taxonomies the way similar to query_posts('tag=bread+baking+recipe');
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | Taxonomy | Keywords: | |
Focuses: | Cc: |
Description
Currently it's possible to have post filtered like this:
query_posts('post_type=movie&status=released');
Would be good to do it like this:
query_posts('post_type=movie&status=wishlist+upcoming-seen');
or
query_posts('post_type=movie&status=wishlist,seen');
Change History (6)
#6
@
14 years ago
- Keywords close removed
- Milestone Future Release deleted
- Resolution set to duplicate
- Status changed from new to closed
#12891 implemented Custom taxonomy queries.
The following url's work for me with the expected results
/state/nsw/ /state/vic/ /state/nsw,vic/ /state/nsw+vic
Since query_posts just avoids WP_Rewrite, this should be implemented by the above mentioned ticket
Note: See
TracTickets for help on using
tickets.
I wouldn't mind the shorthand using the taxonomy query variable, but with tax_query, this ticket seems like a worksforme candidate.