I do that at ColoradoSenate.com.
I created a static home page using the plugin, then created a home.php page and edited it.
Because I have text that changes, and I don’t want to edit the php page all the time, I create a 2nd page, i.e., “home intro page”. I exclude it from the sidebar, and include it in the home.php page.
Then I add the code to display the posts I want. Here is an example of the code I use to display posts from only one category:
<?php $temp_query = $wp_query; ?>
<?php query_posts(‘cat=1&order=DES&showposts=5’); ?>
<?php while (have_posts()) : the_post(); ?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>
<?php the_title(); ?><br><br>
<?php endwhile; ?>
<?php $wp_query = $temp_query; ?>
variables are: cat=1&order=DES&showposts=5
Hope this helps…
K