If you know PHP here are the steps:
1 -
Go ahead and download:
http://magpierss.sourceforge.net/
2 -
You will need to get the URL to your RSS feed.
3 -
You can use something like this on your home page:
PHP Code:
require('PATH TO MAGPIERSS/rss_fetch.inc');
$your_rss_feed_url = 'http://YOUR BLOG.wordpress.com/PATH TO RSS';
$rss = fetch_rss($your_rss_feed_url);
foreach ((array) $rss->items as $blog_post) {
?>
<a href="<?php echo $blog_post['link']; ?>"><?php echo $blog_post['title']; ?></a><br />
<?php echo $blog_post['description']; ?><br /><br />
<?php
}
You might need to tweek it a little but this is the general idea.