Query_posts Ordering/Sorting
-
Hello all,
I am running WP 2.9.2 and having a problem sorting/ordering my query for posts. I think I need to change the (ASC) ascending & (DESC) descending order. I’ve spent a few hours on this and checked the documentation and with no luck.
In a nutshell, here is what I have.
query_posts(array('showposts' => 100, 'post_parent' => 106, 'post_type' => 'page')); while (have_posts()) { the_post(); ?> <a href="<?php the_permalink() ?>" class="grid-product"> <?php the_title(); ?><br /> </a> <?php } wp_reset_query(); // Restore global post data
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Query_posts Ordering/Sorting’ is closed to new replies.