Displaying the most recent posts from a single category in WordPress

Have you ever seen a site that showed the most recent post or posts from a single category? If you want that functionality for your own site it's just a small chunk of code.

<?php
query_posts('showposts=1&cat=3');
while(have_posts()) : the_post();
?>
<ul>
<li><h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>

<ul><li><?php the_content(); ?></li>
</ul>
</li>
</ul>
<?php endwhile; ?>


All you need to do is change the ID for the category to the ID that you want to show posts from by changing cat=3. You can also change the number of articles being shown to any number you want by changing showposts=1 to a different number.

This would work well by creating your own custom page to show it on.
  • 3 Users Found This Useful
Was this answer helpful?

Related Articles

Use .htaccess to block WordPress brute force attacks

WordPress has been targeted recently for brute force attacks where hackers use automated scripts...

I am getting an error when trying to upload media in WordPress.

If you are having problems uploading media to your WordPress installation, it is possible that...

How do I install WordPress?

This video requires flash enabled in your browser. Text version:...

How do I enable automatic updating for major versions in WordPress?

WordPress has added in support for automated upgrading of minor releases. This means it will...