RSS <title>、<link> 以及 <description> 元素

定义和用法

<item> 元素定义 RSS feed 中的一篇文章,该元素有三个必需的子元素:

  • <title> - Paglalarawan ng pamagat ng proyekto (halimbawa: Tutorial ng RSS)</title>
  • <link> - Paglalarawan ng hyper link na patungo sa proyekto (halimbawa: http://www.codew3c.com/rss/)</link>
  • <description> - Paglalarawan ng proyekto (halimbawa: Ang pinakabagong tutorial ng RSS ng CodeW3C)</description>

Halimbawa

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
  <title>Pahina ng Tahanan ng CodeW3C.com</title>
  <link>http://www.codew3c.com</link>
  <description>Libreng tutorial ng pagbuo ng web</description>
  <item>
    <title>Tutorial ng RSS</title>
    <link>http://www.codew3c.com/rss</link>
    <description>Bagong tutorial ng RSS sa CodeW3C.com</description>
  </item>
  <item>
    <title>Tutorial ng XML</title>
    <link>http://www.codew3c.com/xml</link>
    <description>Bagong tutorial ng XML sa CodeW3C.com</description>
  </item>
</channel>
</rss>