groups

info


tags: wordpress

Link to this snippet:


Download to Code Collector

language: PHP
licence: BSD

WORDPRESS: LATEST POSTS FROM CATEGORY

options: send to code collectorview all maeghan's snippets
<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>