RSS <pubDate> 元素
❮ 完整的 RSS 参考
定义和用法
The <pubDate> element defines the last publication date for the content in the RSS feed. (<pubDate>
元素定义 RSS feed 中内容的最后发布日期。)
示例
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>W3Schools 主页</title>
<link>https://w3schools.org.cn</link>
<description>免费网页制作教程</description>
<pubDate>Thu, 27 Apr 2006</pubDate>
<item>
<title>RSS 教程</title>
<link>https://w3schools.org.cn/xml/xml_rss.asp</link>
<description>W3Schools 上的新 RSS 教程</description>
</item>
</channel>
</rss>
自己动手试一试 »
❮ 完整的 RSS 参考