Revision: 9936
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at December 1, 2008 03:19 by creator
Initial Code
<div class="pod">
<h2>Latest Announcements</h2>
<ul>
<?php query_posts('cat=5&showposts=10'); ?>
<?php while(have_posts()) : the_post(); if(!($first_post == $post->ID)) : ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permalink: <?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php endif; endwhile; ?>
</ul>
</div>
Initial URL
Initial Description
Used to display the latest X number of posts from the specified category.
Initial Title
WordPress: Latest Posts from Category
Initial Tags
wordpress, category
Initial Language
PHP