How to display posts sorted by date DESC?
How to display posts sorted by date descending?
What You do just is to add one php code into index.php of wp-theme.
Go to the wp panel-> presentation->Theme Editor,then click “Main Index Template”(or go to theme directory,find index.php). Before the code
<!--the loop-->
<?php while (have_posts()) : the_post(); ?>
add
<?php $posts=query_posts($query_string . ‘&orderby=date&order=desc’); ?>
Here is my theme’s index.php’s code:
<?php get_header(); ?>
<div id="content">
<!--index.php-->
<!--the loop-->
<?php if (have_posts()) : ?>
<!–sort by date desc–>
<?php $posts=query_posts($query_string . ‘&orderby=date&order=desc’); ?>
<!–the loop–>
<?php while (have_posts()) : the_post(); ?>
…
Thank for fitztrev at #wordpress channel of irc.freenode.net
Reference: