I have a custom loop:
$args = array(
'post_type' => 'symposia_program',
'taxonomy' => 'days',
'term' => 'day-1',
'order' => 'ASC'
);
$query = new WP_Query($args);
if ( $query->have_posts() ) :
while ( $query->have_posts() ) :
$query->the_post();
.....(code)....
endwhile;
endif;
wp_reset_query();
For some reason, the 'order' => 'ASC' parameter has strange effects on the output of the loop. Basically it doesn't render some of the posts, namely some recent ones. If I switch back to DESC, all the posts show up. Please help!

taxonomyis depreciated, you should switch totax_query. Also, I do not believetermis an actual parameter. – m0r7if3r May 4 '12 at 21:29