I have a static homepage (PAGE not POST) and with the PHP Execution plugin I am trying to show the titles and excerpts of the last 2 articles from a specific category.
Unfortunately the results from my code below shows both the Excerpt followed by the full post, and I'm at a loss of how to fix this. Can anyone advise?
<h2>In The News...</h2>
<?php query_posts('cat=74&showposts=2'); ?>
<?php while (have_posts()) : the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
<?php endwhile; ?>