RSS <title>、<link> ve <description> elementleri

定义和用法

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

  • <title> - Projenin başlığı tanımlar (örneğin: RSS Eğitimi)
  • <link> - Projeye yönlendirme bağlantısı tanımlar (örneğin: http://www.codew3c.com/rss/)
  • <description> - Proje açıklaması (örneğin: CodeW3C en yeni RSS eğitimi)

Örnek

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
  <title>CodeW3C.com Ana Sayfa</title>
  <link>http://www.codew3c.com</link>
  <description>Ücretsiz web yapım eğitimleri</description>
  <item>
    <title>RSS Eğitimi</title>
    <link>http://www.codew3c.com/rss</link>
    <description>CodeW3C.com'da yeni RSS eğitimi</description>
  </item>
  <item>
    <title>XML Eğitimi</title>
    <link>http://www.codew3c.com/xml</link>
    <description>CodeW3C.com'da yeni XML eğitimi</description>
  </item>
</channel>
</rss>