Add Author to RSS Feed in WordPress
If you have multiple authors on a WordPress blog you may want to add the Author name to the RSS feed title.
Although the standard RSS feed file in WordPress contains the author if you view the RSS feed you will not be able to see the Author name through standard readers as it is not converted.
A good example is to look at a WordPress feed that uses Google Reader and you will not see the Author listed.
One solution of course is to change the WordPress Feed files, however, if you do this every time you update WordPress your change will get written over. The easier and better solution is to add the small snippet of code below to your WordPress Themes function file.
function wp_titlerss($content) {
global $wp_query;
$content = $content." by ".get_the_author();
return $content;
}
add_filter('the_title_rss', 'wp_titlerss');
Hire Me
Related Posts
Written by: David Cooley - June 15th, 2011
Posted in Programming, Wordpress ThemesTags: Feedburner, RSS, Wordpress, Wordpress Function








Thanks for the helpful tip! I was just now trying to add authors into my RSS feeds, and this works perfectly. Thanks!