Şu kod ile herhangi bir kategoriden son mesajı çekebilirsin

				<?php $recent = new WP_Query("cat=1&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
				<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
				<?php the_content(__('Read the story &raquo;'));?>
				<?php endwhile; ?>
cat=1 : buradan istediğin kategorinin id' sini beliryeceksin.
showposts=1 : buradan da kaç tane mesaj göstereceksin onu belirleyeceksin