WP_Query sorting does not work
-
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
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘WP_Query sorting does not work’ is closed to new replies.