RSS channel <webMaster> 元素
<webMaster> 元素定义了 feed 网络管理员的电子邮件地址
我们不推荐用户定义这个网络管理员的电子邮件地址,现在的垃圾邮件太多了
语法
<channel> <webMaster> [your_site_webmaster_email_here]</webMaster> </channel>
[your_site_webmaster_email_here] 就是当前站点的网络管理员的电子邮件地址
范例
<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>简单编程首页</title> <link>https://www.twle.cn</link> <description>简单教程[www.twle.cn]以编程开发所需掌握的语言和知识入手...</description> <webMaster>nobody@twle.cn</webMaster> <item> <title>HTML 基础教程</title> <link>https://www.twle.cn/l/yufei/html/html-basic-index.html</link> <description>HTML 基础教程</description> </item> <item> <title>Python2 基础教程</title> <link>https://www.twle.cn/l/yufei/python27/python27-basic-index.html</link> <description>Python2 基础教程</description> </item> </channel> </rss>