dd

RSS <title>, <link>, 和 <description> 元素


定义和用法

<channel> 元素描述 RSS feed,该元素有三个必需的子元素:

  • <title> - 定义频道的标题(例如:w3school 首页)
  • <link> - 定义指向频道的超连接(例如:http://www.shouce.ren/)
  • <description> - 描述频道(例如:免费的网站建设教程)

实例

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">

<channel>
  <title>W3CSchool Home Page</title>
  <link>http://www.shouce.ren</link>
  <description>Free web building tutorials</description>
</channel>

</rss>