Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]

Sometimes its necessary to add content at the end of your RSS feed. Here is a little code that will help you to do that. You can add social pages, scripts and more using this method. Just paste the code below into your functions.php file and replace the content with whatever you want it to be. :-) This will not add content to then end of your posts in your website, this will only add content to your RSS feed.

//adding additional content to RSS feed
function addToRSS() {
return '<p>Additional content can be here</p>';
}
add_filter('the_excerpt_rss', 'addToRSS');
add_filter('the_content_rss', 'addToRSS');