4

I want to display a photo for each item in atom feed. I used this structure for my entry

<entry>
    <title>TITLE</title>
    <link href="http://page" />
    <id>http://page</id>
    <updated>DATE</updated>
    <summary>DESCRIPTION</summary>
    <content type="image/jpg" 
    src="http://image" />
</entry>

but when adding the feed in Google Reader, it will not display images. What is the best way to do so?

Dan Lowe
  • 51,713
  • 20
  • 123
  • 112
Googlebot
  • 15,159
  • 44
  • 133
  • 229

1 Answers1

1

For Atom or RSS you need to enable hotlinking to your files for Google Reader to read them, as decribed at:

“HowTo: Allow Google Reader Access To Hotlink-Protected Images”
By JP Habaradas on April 27, 2009

Also, you may want to link this question to https://webmasters.stackexchange.com/ as you will need to make .htaccess modification and have Apache Rewrites enabled and configured.

Community
  • 1
  • 1
TryTryAgain
  • 7,632
  • 11
  • 46
  • 82
  • 1
    I love that someone downvoted an accepted answer without any comment as to what is wrong with the accepted solution. – TryTryAgain Aug 23 '13 at 18:12