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.org.cn)
- <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.org.cn</link>
<description>免费网页制作教程</description>
</channel>
</rss>
自己动手试一试 »
❮ 完整的 RSS 参考