RSS pubDate 元素

最后更新于:2022-03-26 22:42:31

RSS <pubDate> 元素


RSS pubDate 元素 完整 RSS 参考手册


定义和用法

<pubDate> 元素为 feed 的内容定义最后发布日期。


实例

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>菜鸟教程首页</title>
<link>http://docs.gechiui.com/w3school</link>
<description>免费编程教程</description>
<pubDate>2016 年 12 月 1 日</pubDate>
<item>
<title>RSS 教程</title>
<link>http://docs.gechiui.com/w3school/rss</link>
<description>菜鸟教程 Rss 教程</description>
</item>
</channel>
</rss>

尝试一下 »


RSS pubDate 元素 完整 RSS 参考手册