groups

name language licence
WORDPRESS LOAD JQUERY PHP BSD
WORDPRESS GET CONTENT PHP BSD
WORDPRESS: LATEST POSTS FROM CATEGORY PHP BSD
WORDPRESS QUERY POST FOR A SPECIFIC PAGE PHP BSD
Social bookmarking of posts PHP BSD
Better more link PHP BSD
WORDPRESS SHORTCODE PHP BSD
WORDPRESS INCLUDE PAGE CONTENT PHP BSD

< 1 2 3 4 5 6 7 8 9 10 11 12 >



language: PHP
licence: BSD

WORDPRESS: LATEST POSTS FROM CATEGORY

options: view full snippetsend to code collector
<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>
	
(Continues...)