我可以在Schema.org中为同一产品使用不同的产品图片吗?

时间:2016-12-25 09:37:54

标签: image schema.org

如果我有categories.html页面,其中包含指向product.html页面的链接,

是否可以将categories.html中的product-small-image标记为产品的Schema.org image,即使product.html页面中的产品有更好的详细图片?

(我正在使用Microdata。)

1 个答案:

答案 0 :(得分:1)

是的,那应该没问题。

请注意,您仍然可以在不显示大图像的情况下提供大图像。这可以使用link元素,例如:

<article itemscope itemtype="http://schema.org/Product">
  <img src="small-image.png" alt="…" />
  <link itemprop="image" href="big-image.png" />
</article>

如果您想表达真实,可以提供ImageObject值并使用其thumbnail属性:

<article itemscope itemtype="http://schema.org/Product">
  <div itemprop="image" itemscope itemtype="http://schema.org/ImageObject">
    <img itemprop="thumbnail" src="small-image.png" alt="…" />
    <link itemprop="contentUrl" href="big-image.png" />
  </div>
</article>