I have seen many similar hacks on the Web, but all of them require you to edit WordPress core files to achieve the same result. Of course, editing WordPress core files is a very bad idea because then you would have to re-edit the files each time you upgrade your blog. Instead, this hack uses the add_filter() WordPress function to insert content into your RSS feed without editing any core files.
<?php
function insertAds($content) {
$content = $content.
'<hr />'.
'<a href="http://www.wprecipes.com">Link!</a><hr />';
return $content;
}
add_filter('the_excerpt_rss', 'insertAds');
add_filter('the_content_rss', 'insertAds');
?>
[http://www.smashingmagazine.com/2008/ 12/02/10-useful-rss-hacks-for-wordpress/]