I'm having problems trying to do a simple sorting task. I've entered the code below in category.php"
$queryP = new WP_Query( array ( 'orderby' => 'title', 'order' => 'DESC' ) );
#$queryP->query();
while ( $queryP->have_posts() ) : $queryP->the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
Titles are not sorted the way I had hoped it would. What did I miss out? I'm running WordPress 3.2
Thanks