I thought my first post should be something helpful so here goes...
Like a lot of you I don't like to have to spend money for something that should be easy to figure out myself. But of course the figuring out is the hard part. I have at one time or another tried every RSS import script, mod, or hack to get a consistent RSS feed to post in a Wordpress blog and this is my current "solution"
First get and install FeedWordPress
http://projects.radgeek.com/feedwordpress/
Next get and install Gregarius into a sub directory on your Wordpress site
Be sure to also DL and install the RSS View plugin
http://plugins.gregarius.net/index.php?req=info&id=7
Once you have Gregarius setup be sure to enable the RSS View plugin.
When you set up your RSS feed links in Gregarius you can edit the title and description which is one of the reasons I use this setup.
Now when you update (Refresh) Gregarius you will have your RSS feeds retrieved that you can view and then use the RSS View link at the bottom of the Gregarius page to add to your FeedWordPress. Note - Be sure you are viewing an individual feed in Gregarius before you grab the RSS link. Run FeedWordPress with the Gregarius RSS links and you're done.
The whole thing can be then set up with a CRON job to update your Wordpress blog.
Feedwordpress Cron:
http://projects.radgeek.com/2007/11/22/feedwordpress-0991-bug-fixes-reorganization-minor-features-added-and-mu-compatability/
Gregarius Cron:
http://forums.gregarius.net/comments.php?DiscussionID=553&page=1#Item_0
When I update Wordpress with this setup there is one drawback to Gregarius in that you cannot CRON delete the entries in the database. You would have to login as admin and remove the feeds under "Items" A work around is to truncate the item table in Gregarius with this PHP script:
<?php
MYSQL_CONNECT('host','database_username','database_password');
@mysql_select_db("database_name") or die(mysql_error());
$query="TRUNCATE item";
mysql_query($query);
mysql_close()
?>
Note - Be sure to rename your Gregarius update.php file to something else so no one can update the feeds.
This may seem a little convoluted but my reasoning is that instead of grabbing an RSS link off of a news site and just throwing it into FeedWordPress I can, with Gregarius in a sub directory keep some of the authority as the RSS feeds are being generated from my domain.
If you grab a raw feed and use it you will see the difference. Also you have the ability to edit the title and description for each feed so you can personalize and perhaps brand the feed to be more unique.
Duplicate contact can be a problem but I figure constant updates to a blog are even more important.
Anyway that's my RSS feed setup for Wordpress and if you give it a try let me know how it works out...
Thanks all