Skip to content

Instantly share code, notes, and snippets.

@thirdrev
thirdrev / WP Category Listing
Last active August 29, 2015 13:59
WP Category Listing
<?php query_posts('cat=1&showposts=5'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php the_excerpt() ?>
</li>
<?php endwhile; endif; ?>
and the second attempt: