﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
16730,query_posts() problem with multiple tags since 3.1 update,joshstauffer,scribu,"When I upgraded to 3.1 this query stopped working.

'''Does NOT return any results in 3.1:'''

{{{
query_posts( 'cat=8&tag=featured+hotels-and-motels' );
}}}

'''Returns expected results in 3.1:'''

{{{
$args = array (
	'cat' => 8,
	'tag_slug__and' => 'featured+hotels-and-motels',
);
query_posts( $args );
}}}

[http://wordpress.org/support/topic/query_posts-problem-with-multiple-tags-since-31-update Another user with similar experience].",defect (bug),closed,normal,3.1.1,General,3.1,normal,fixed,,amir@…
