tags:

views:

27

answers:

2

how can I add my logo to my rss feed?

A: 

This will work for Atom feed:

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

This will work RSS feeds:

<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>
Chris
A: 

Atom RSS

<feed>
   ...
   <icon>http://example.org/favicon.ico&lt;/icon&gt;
   <logo>http://example.org/logo.jpg&lt;/logo&gt;
   ...
</feed>

RSS

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

Reference

Bryan Denny