Google 投诉图片缺失或商品类型无效

Google complains image missing or invalid itemtype

无论我如何标记图像,Google 都会抱怨图像丢失或项目类型无效。

<html itemscope itemtype="http://schema.org/Article">
 <head>
  ...
  <link itemprop="image" href="https://www.example.com/image.jpg" />
 </head>
 <body>
  <img itemprop="image" src="https://www.example.com/image.jpg" />
 </body>
</html>

如何在文章中添加图片?

Schema.org 的 image property can have a URL (this is what you do) or an ImageObject 作为值。

对于 Google’s Articles Rich Snippet,Google 似乎(根据他们的文档和测试工具)仅支持带有 ImageObject 的变体。

因此,如果您想获得该丰富网页摘要,您可能必须改用如下内容:

<body itemscope itemtype="http://schema.org/Article">

  <div itemprop="image" itemscope itemtype="http://schema.org/ImageObject">
    <img itemprop="url" src="https://www.example.com/image.jpg" />
    <meta itemprop="height" content="20" />
    <meta itemprop="width" content="20" />
  </div>

</body>