Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook share link with more than one image

Tags:

facebook

share

I've came across this share https://www.facebook.com/lensculture/posts/10153590621527368 from LensCulture:

enter image description here

and I was wondering how they managed to achieve a share like that, with multiple images/thumbnails. Basically each image forwards to the same link, which is https://www.lensculture.com/articles/joanna-mrowka-streets-of-the-world-piece-by-piece

How did they create a share like that? Does anyone know?

like image 747
coldpumpkin Avatar asked Nov 03 '15 18:11

coldpumpkin


People also ask

How do I post a link to multiple pictures on Facebook?

So, if you would like to display multiple images in a FB post with link, you should add og:image tags to the webpage. FB examines the link, finds images and displays them in post.

Can you post multiple photos on Linked In?

You can now select multiple photos to include in a single post on LinkedIn. With this new feature, you can share more than one view of the experience you want to share with your network.


1 Answers

This is achieved when webpage has OpenGraph tags with multiple images. Details here.

If you view source of the link, you can see 3 instances of og:image tag

<meta property="og:image" content="https://photo1.lensculture.com/large/f7cae4af-f442-44fe-a162-0d2a0293dbdc.jpg" />
<meta property="og:image" content="https://photo2.lensculture.com/large/b678eb67-da99-40a4-86df-6dde6d9d9aef.jpg" />
<meta property="og:image" content="https://photo0.lensculture.com/large/9492a534-9ac7-423a-8ff7-776a72fbce31.jpg" />

So, if you would like to display multiple images in a FB post with link, you should add og:image tags to the webpage.

FB examines the link, finds images and displays them in post.

like image 114
tomhorvat Avatar answered Oct 23 '22 07:10

tomhorvat