So I've created a little jquery cycle based feature rotator that pulls from the post_tags. I added the post tags to my other custom post types like this:
register_taxonomy_for_object_type('post_tag', 'reviews');
register_taxonomy_for_object_type('post_tag', 'interviews');
//...
When I add a 'featured' tag to one of my reviews and one of my interviews, and query for it thusly:
$query = new WP_Query( array( 'post_tag' => 'featured' ) );
I get two random posts instead of the two expected results. Any ideas?