I have the Facebook like button installed and working. I want to add an image that posts to the users wall. How can I do this?
<fb:like send="true" width="200" show_faces="false"></fb:like>
EDIT:
Added og tag
<meta property="og:image" content="http://www.mysite.com/image.gif" />
You have to add open graph meta property tags with link to your image. (something like:
<meta property="og:image" content="http://linktoyourimage.jpg" />)You can read everything about this: http://www.ogp.me/.
Best