Browse » Home » Blogging »Create Latest Post/Recent Post WordPress

Create Latest Post/Recent Post WordPress

The Following is Php Code to Show Recent Post or Latest Post WordPress

<ul>
<?php $recent = new WP_Query('showposts=5'. $posts .'&orderby=post_date&order=desc'); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a></li>
<?php endwhile; ?>
</ul>
Related Posts Plugin for WordPress, Blogger...
Rating: 5» 99% like it» Reviewed by Best Solver on In Create Latest Post/Recent Post WordPress

Leave a Reply