当 Facebook 上的页面链接到时,如何标记要用作缩略图的照片

发布于 2024-08-12 22:50:06 字数 89 浏览 9 评论 0原文

当一个人在 Facebook 上发布链接时,Facebook 会自动找到一张照片作为缩略图,显示在新闻源中。是否有某种 (HTML) 标记围绕您想要用作首选的照片?

When a person posts a link on Facebook, Facebook automatically finds a photo to be used as a thumbnail that shows up in the news feed. Is there some sort of (HTML) markup to surround a photo you'd like to use as the first choice?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

驱逐舰岛风号 2024-08-19 22:50:06

您想要的是 Facebook 在 Facebook_分享/指定_元_标签

您不要将元数据放在图像本身周围,而是将其放在文档的头部,如下所示:

<meta name="title" content="The Title Of The Link" />
<meta name="description" content="A description of the link would go here." /> 
<link rel="image_src" href="http://www.example.com/images/image.jpg" />

What you want are the <meta> tags that Facebook defines in their documentation on Facebook_Share/Specifying_Meta_Tags.

You don't put the metadata around the image itself, rather, you put it in the head of the document, like this:

<meta name="title" content="The Title Of The Link" />
<meta name="description" content="A description of the link would go here." /> 
<link rel="image_src" href="http://www.example.com/images/image.jpg" />
揽月 2024-08-19 22:50:06

接受的答案现已过时。新的方法是使用 开放图标签 例如

<meta property="og:image" content="http://example.com/picture.jpg" />

The accepted answer is now out of date. The new way to do it is with an open graph tag e.g.

<meta property="og:image" content="http://example.com/picture.jpg" />
冧九 2024-08-19 22:50:06

请记住,如果一切都不起作用,那么您可能应该重新加载 Facebook 缓存。
http://developers.facebook.com/tools/lint/

keep in mind that if everything doesn't work, than, may be, you should reload Facebook cache.
http://developers.facebook.com/tools/lint/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文