RSS <pubDate> 元素
<pubDate> 元素为 channel 的内容定义最后发布日期
info: 建议把 pubDate 设置为当前 channel 内容的最后更新日期,这样,当内容更新了,订阅者也能收到更新 但,一般情况下应该这个时间节点很难说,所以,最好的情况是,不定义这个元素
语法
<pubDate>Fri, 01 Sep 17 09:22:48 +0800</pubDate>
RSS2.0 标准下的时间格式要求比较严格,必须遵守 rfc822
标准
比如 Fri, 01 Sep 17 09:22:48 +0800
这样的格式
关于时间格式的更多内容,可以查看我们的 日期与时间 教程
范例
<?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> <pubDate>Fri, 01 Sep 17 09:22:48 +0800</pubDate> <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>