recent posts not being ordered the way i structured it too
-
i’m using the code below on the homepage of this site: https://www.goldcoastchamber.com.
<h2>Upcoming Events</h2> <?php $recent = new WP_Query("cat=3&orderby=post_name&order=ASC"); while($recent->have_posts()) : $recent->the_post();?> <a href="<?php the_permalink() ?>"> <?php the_title(); ?></a> <?php endwhile; ?>
for the most part, the code works, but i have it setup so that all the posts should appear in ascending alphabetical order, by the post name. but how come the last posting “5/20/10…” is listed last when it should be second, alphabetically?????
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘recent posts not being ordered the way i structured it too’ is closed to new replies.