How to change the image while sharing the content to the social networks? [duplicate]

To do this you must have access to code of your blog post. In head section there are meta tags which define the way you share something on different sites. It is called OG tags and can also be done through some extensions
Here is simple example of meta tag changing.

<meta property=“og:image” content=“http://example.com/example.jpg” />

<meta property="og:image:width” content="180" />

<meta property="og:image:height” content="110" />

For more information visit this link

https://yourblogworks.com/social-share-image/

Leave a Comment