RSS <author> tag
Usage
Specifies the email address of the author of an RSS item. The <author> tag should be placed within the <item> tag for the item you are specifying the author for.
NOTE: Including <author> in an RSS file may result in spam.
Example
RSS feed with author specified for items:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>Landofcode.com web tutorials updates</title>
<link>http://www.landofcode.com</link>
<description>Web development tutorials</description>
<item>
<title>Site usability</title>
<link>http://www.landofcode.com/usability.html</link>
<description>Learn how to improve the usability of your site</description>
<author>admin@landofcode.com</author>
</item>
<item>
<title>New HTML tutorials</title>
<link>http://www.landofcode.com/html-tutorials/</link>
<description>Five new HTML tutorials have been added to the site</description>
<author>editor@landofcode.com</author>
</item>
</channel>
</rss>