RSS title, link, 和 description 元素
完整 RSS 参考手册定义和用法
<channel> 元素描述 RSS feed,该元素有三个必需的子元素:
- <title> - 定义频道的标题(例如:w3school 首页)
- <link> - 定义指向频道的超连接(例如:https://code.tuweizhong.com/)
- <description> - 描述频道(例如:免费的网站建设教程)
实例
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<title>自强学堂 Home Page</title>
<link>https://code.tuweizhong.com</link>
<description>Free web building tutorials</description>
</channel>
</rss>
<rss version="2.0">
<channel>
<title>自强学堂 Home Page</title>
<link>https://code.tuweizhong.com</link>
<description>Free web building tutorials</description>
</channel>
</rss>
尝试一下 »
完整 RSS 参考手册