
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











How To Increase Your Feed Readers?
All the bloggers use feedburner these days apart from the original feed in their blog. The original feed is something like, http://www.bloggingjunction.com/feed The feed you burn with feedburner is something like, http://feeds.feedburner.com/bloggingjunction If you use both the feeds in your blog, you are doing completely wrong! If suppose I visit the first link and suppose [...]