Reputation: 131
i added sharing feature in my blog,but when i click to share the blog in facebook. in the pop-up-window showing improper image. but in facebook it showing correct image...
i don't know the Technical issues url of my blog: http://www.codingexpertz.in/mclaren-and-honda-unveil-2015-f1-car/
Upvotes: 0
Views: 196
Reputation: 11852
If you take a look at your web page in the Facebook Debugger, you don't have any open graph metadata on your page.
There are several plugins that will add this metadata for you. My personal favorite is Wordpress SEO
Upvotes: 1
Reputation: 1215
Have you used this meta tag?
<meta property="og:image"content="YOUR-IMAGE-URL" />
The wrong image can be a result of the Facebook cache. You can test it using Facebook's debugger.
Upvotes: 1