this would be great, but I installed it on Beta 2 and it doesn’t seem to be working on my site…
I am using two custom taxonomies (locations, job-category), and a custom page type (jobs).
Here’s my query
?post_type=jobs&locations=beaver-valley&job-category=science-technology&post_status=publish&orderby=date&order=DESC&posts_per_page=15&paged=1
I am using the following code to change my query:
$wp_query = new WP_Query();
$new_query_vars = "?post_type=jobs&locations=beaver-valley&job-category=science-technology&post_status=publish&orderby=date&order=DESC&posts_per_page=15&paged=1";
$wp_query -> query( $new_query_vars );
With the code above, WordPress only filters on the ‘job-category’ taxonomy. When I remove that, the ‘locations’ filter works just fine.
I installed the plugin, but I get the same results…
Please, am I doing something wrong?
Also, is this code going into Core soon? This seems like a pretty vital piece of functionality, IMO.
Thanks!