Perfect, Thanks for that. Got that working.
I have added it to my static pages but am wondering how I alter this code:
<?php $temp_query = $wp_query; ?>
<?php query_posts('category_name=rss&showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
to add the RSS to the front page only?
I know you must add if ( is_page('Home')
but I am unsure how to implement it???