dd

RSS <skipDays> 元素


定义和用法

<skipDays> 元素规定在那些天,聚合器忽略更新 feed。

提示和注释

提示: 最多可以用 7 个 <skipDays> 元素。

实例

<?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>
  <skipDays>
    <day>Saturday</day>
    <day>Sunday</day>
  </skipDays>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.shouce.ren/rss</link>
    <description>New RSS tutorial on W3CSchool</description>
  </item>
</channel>

</rss>