Reputation: 776
I have wordpress site, i added like button for share post. But, i don't knew than i came loaded default image ...
Some post are shared with captcha's image... not good !
I have added :
but it's always captcha's image on like button :/
One idea ? Thanks
Upvotes: 0
Views: 638
Reputation: 15600
You can specify an image for the Facebook scraper to use when posting/sharing to Facebook using the og:image Open Graph meta tag:
<head>
<meta property="og:image" content="http://www.example.com/share_image.jpg" />
</head>
Once you have specified a new Open Graph image, you can ask Facebook to scrape the page again to get the new image using the Open Graph Debugger:
http://developers.facebook.com/tools/debug
The Debugger (formerly the "Linter") will also let you preview what Facebook will post for any of your pages, it's a handy tool.
I'm sure there are plenty of WordPress plugins which you can use to automatically set up Open Graph tags on your website. Good luck!
Upvotes: 3