RSS <title>, <link>, and <description> Elements
❮ 完整的 RSS 參考
定義和用法
The <channel> element describes the RSS feed, and has three required child elements
- <title> - Defines the title of the channel (e.g. W3Schools Home Page)
- <link> - Defines the hyperlink to the channel (e.g. https://w3schools.tw)
- <description> - Describes the channel (e.g. Free web building tutorials)
示例
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>W3Schools Home Page</title>
<link>https://w3schools.tw</link>
<description>免費網頁製作教程</description>
</channel>
</rss>
自己動手試一試 »
❮ 完整的 RSS 參考