Mobile app version of vmapp.org
Login or Join
Angela700

: How to specify all three images to show when a page is shared on LinkedIn? When you share a URL on LinkedIn, it shows three images from that page. How can I get it to show the correct

@Angela700

Posted in: #Images #Linkedin #MetaTags #OpenGraphProtocol

When you share a URL on LinkedIn, it shows three images from that page. How can I get it to show the correct three images to the person posting when they paste my company URL into a post?

I've tried using the open graph meta tags, but that only allows me to specify one of the three images.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Angela700

1 Comments

Sorted by latest first Latest Oldest Best

 

@Samaraweera270

You should use Open Graph standard's <meta> tags in the <head> of your HTML page. Like so:

<html prefix="og: ogp.me/ns# >
<head>
<meta property="og:title" content="My Shared Article Title" />
<meta property="og:description" content="Description of shared article" />
<meta property="og:url" content="http://example.com/my_article.html" />
<meta property="og:image" content="http://example.com/foo.jpg" />
</head>
<body>

</body>
</html>


For further read, check out documentation: developer.linkedin.com/docs/share-on-linkedin

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme