I have a feature slider set up that draws in posts that are tagged ‘feature’
$my_query = new WP_Query(array(
'showposts' => 3,
'tag' => 'feature' ));
Is is possible to draw in posts AND pages?
I know you can draw pages with 'post_type'=>'page' but can you mix the two?
@fivedigit Thanks but I went with this in the end:
Although your version may come in handy in the future!