ASC and DESC
-
I am having issues where blog posts are ordering asc with oldest first and I have tried everything I can think of to get this to order in descending with newest first… can someone please help
Here is my current code:
<?php if (have_posts()) : while (have_posts()) : the_post();?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <div class="clearfix" style="margin-top: 25px; color: rgb(129, 131, 130); font-size: 95%;"> <?php if (in_category('7', $id)) { ?> <?php the_content('Read the rest of this entry »'); ?> <?php if (function_exists('ratings_table')) ratings_table(); ?> <?php } else { ?> <?php the_content('Read the rest of this entry »'); ?> <?php } ?> <br /><br /> <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> | <?php the_tags('Tags: ',', ',''); ?> <br /><br /> </div>
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
The topic ‘ASC and DESC’ is closed to new replies.