Show newest to Oldest posts
-
I have this small piece of php that displays the most recent posts. Currently is showing them oldest to newest. Is there anyway to switch the order to show from Newest to Older posts? Here is the php:
<?php
$posts = get_posts(‘numberposts=10&order=ASC&orderby=post_title’);
foreach ($posts as $post) : start_wp(); ?>
<p class=”title”><?php the_date(); echo “
“; ?></p>
<h2> ” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
Main Link to: ” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?>
<div class=”line”></div>
<?php
endforeach;
?>Here is the site:
https://www.joneichlerlaw.com/You can see what I am talking about under the News/Blog section.
Any help would be greatly appreciated. Thanks,
Jay
- The topic ‘Show newest to Oldest posts’ is closed to new replies.