RSS <title>, <link>, and <description> 元素
❮ 完整的 RSS 参考
定义和用法
<channel> 元素描述 RSS 提要,并具有三个必需的子元素:
- <title> - 定义频道的标题(例如 W3Schools 主页)
- <link> - 定义频道的超链接(例如 https://www.w3ccoo.com)
- <description> - 描述频道(例如免费网络建设教程)
实例
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>W3Schools Home Page</title>
<link>https://www.w3ccoo.com</link>
<description>Free web building tutorials</description>
</channel>
</rss>
亲自试一试 »
❮ 完整的 RSS 参考