Recent posts from specific category
April 24, 2009
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>

Leave a Reply