This query works in some places, but not in others... right now it's not working on the home page. This query is in a file that is included into index.php of my theme.
The regular posts show, but no cutom post types. What's wrong with this query?
$args = array(
'post_type' => array('post', 'video', 'slideshow', 'poll', 'quote'),
'orderby' => 'date',
'order' => 'DESC'
); query_posts( $args );
