I can't seem to get post__in to work with custom post types. Is this true? What's the alternative?
$args = array('post_type' => array( 'post', 'page', 'tf_events', 'duka' ),
'orderby' => 'menu_order', 'showposts' => -1,
'post__in' => explode(',',$mtheme_featured) );
query_posts($args);
$mtheme_featured has two ids separated by commas, one post and one tf_event; only the post is shown.
'posts_per_page'instead of'showposts'.'showposts'is for theget_posts()function. – John P Bloch Jun 30 '11 at 11:42