2010-10-29 68 views

回答

0

这将为Atom供稿工作:

<feed> 
    <logo><path to image></logo> 
    <icon><path to icon></icon> 
</feed> 

这将工作的RSS提要:

<channel> 
    ... 
    <image> 
    <url>url to image </url> 
    <title>image title </title> 
    <link><path to image></link> 
    <width>pixel width</width> 
    <height>pixel height</height> 
    <description>description here </description> 
    </image> 
    ... 
</channel> 
1

的Atom RSS

<feed> 
    ... 
    <icon>http://example.org/favicon.ico</icon> 
    <logo>http://example.org/logo.jpg</logo> 
    ... 
</feed> 

RSS

<channel> 
    ... 
    <image> 
    <url>http://www.snook.ca/img/rss_banner.gif</url> 
    <title>Snook.ca</title> 
    <link>http://www.snook.ca/jonathan/</link> 
    <width>111</width> 
    <height>32</height> 
    <description>Snook.ca features tips, tricks, and bookmarks on web development</description> 
    </image> 
    ... 
</channel> 

Reference

相关问题