
In WordPress some times you want to show recent posts in your blog. How to show them? To show recent posts we need to put some code in WordPress so that it shows the recent posts from your blog. <?php $recent = new WP_Query("showposts=5"); while($recent->have_posts()) : $recent->the_post();?> <li><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a></li> [...]

Posted On February 8, 2010 At 1:14 PM
By












WordPress 2.9 Is Finally Out!
Hi friends! Just after logging in to my dashboard today, I saw a message “WordPress 2.9 Released. Update Now”. I was very happy to see that at last WordPress 2.9 stable version is out. Actually it wasn’t new to me as I have been using WordPress 2.9 Beta version from quite a long time and [...]