I tried the following code (from the WordPress Loop guide:
http://codex.wordpress.org/The_Loop)
<?php $temp_query = $wp_query; ?>
<!-- Do stuff... -->
<b>Latest Post from Category X:</b>
<?php query_posts('category_name=categoryx&showposts=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Do special_cat stuff... -->
<?php endwhile; ?>
<?php $wp_query = $temp_query; ?>
and this did not seem to work. Can anyone please help describe a way to me that would allow the display of the latest X number of posts from a given category, either to display in a page, post, or sidebar?
Thousand thanks. : )