Facebook og:图像 - 多个图像

时间:2017-06-01 16:17:46

标签: html facebook

我希望在分享网站时在脸书预览中显示多张图片。

我该怎么做?我可以只定义多个og:image标签吗?

这是一个例子,我想做什么: enter image description here

由于

1 个答案:

答案 0 :(得分:1)

您只需添加一个og:image标记。

<meta property="og:image" itemprop="image primaryImageOfPage" content="src/to/image/file" />

但是当你在Facebook上分享链接时,他们会为你提供添加多张图片的选项。使用该选项。 enter image description here

在底部看到您可以选择添加多个图像。使用它然后发布。

  

另一个选项

您可以添加多个og:图像标记,然后如果只有单个图像显示更新Facebook调试器中的页面链接。

<meta property="og:image" content="src/to/image/1">
<meta property="og:image" content="src/to/image/2">

任何已经共享的页面(带有一个图像)都可以通过加载facebook调试器中的链接来更新: https://developers.facebook.com/tools/debug/

调试器/ linter可能无法显示所有图像的预览 - 它可能只显示最后一个图像但它确实有效。