1

当我在我的网站 (www.spoilertv.com) 上分享一篇文章时,它会选取我的网站徽标和网站图标等图像以在 Google Plus 分享框中使用

截屏

http://i47.tinypic.com/2zf5ymg.png

有没有一种方法可以将图像排除在 Google+ 的“拾取”之外,例如以某种方式使用 itemprop="image" 片段项?

4

1 回答 1

1

当您未使用 schema.org 标记或 Open Graph 标记指定图像时,Google+ 片段提取器会做出最佳猜测。您不能明确排除图像,但您可以通过为您的片段明确指定不同的图像来实现相同的效果:)

要指定特定图像,您可以添加 schema.org 标记:

<body itemscope itemtype="http://schema.org/Product">
  <h1 itemprop="name">Shiny Trinket</h1>
  <img itemprop="image" src="http://example.com/trinket.jpg" />
  <p itemprop="description">Shiny trinkets are shiny.</p>
</body>

或 OpenGraph 标记:

<meta property="og:title" content="Example Title" />
<meta property="og:image" content="http://example.com/image.jpg" />
<meta property="og:description" content="Example Description" />

您可以在片段文档中详细了解 Google 如何在您的页面上查找图像。

于 2012-07-12T21:11:18.757 回答