Remove WordPress version from RSS feed
wordpress snippet
Adding this snippet to the functions.php of your wordpress theme will remove the wordpres version from your rss feed.
snippet : PHPcopy
function remove_feed_generator() {
return '';
}
add_filter('the_generator', 'remove_feed_generator');
this months featured snippets
- http://www.cliffpaulick.com Cliff Paulick
- http://wpsnipp.com Kevin Chard











