Recent posts from specific category


April 24, 2009
If you're new to my website, why don't get my latest posts using RSS Feed or by Email.

another tip »

Show a recent posts from a specific category in wordpress.

<ul>
<?php $recent = new WP_Query("cat=48&showposts=8"); while($recent->have_posts()) : $recent->the_post();?>
	<li>
		<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
	</li>
<?php endwhile; ?>
</ul>
  • Delicious

Some more useful articles for you

Under Category: Wordpress Code
Article
Leave a Reply