Thanks.
Unfortunately, if I change it to this:
<?php
// The Query
$args = array('orderby' => 'date', 'order' => 'DESC', 'posts_per_page'=>25,'paged' => get_query_var('paged'));
$the_query = new WP_Query( $args );
// The Loop
while ( $the_query->have_posts() ) :
$the_query->the_post();
echo '
<li>' . get_the_title() . '</li>
';
endwhile;
// Restor original Query & Post Data
wp_reset_query();
wp_reset_postdata();
?>
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]
I still get the incorrectly ordered data.