RSS pubDate Element

The <pubDate> element defines the last publication date for an item."

Definition and Usage

The <pubDate> element defines the last publication date for an item.

Example

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

<channel>
  <title>w3resource Home Page</title>
  <link>https://w3resource.net</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>https://w3resource.net/xml/xml_rss</link>
    <description>New RSS tutorial on w3resource</description>
    <pubDate>Thu, 27 Apr 2006</pubDate>
  </item>
</channel>

</rss>

❮ Complete RSS Reference