如果我有categories.html页面,其中包含指向product.html页面的链接,
是否可以将categories.html中的product-small-image标记为产品的Schema.org image
,即使product.html页面中的产品有更好的详细图片?
(我正在使用Microdata。)
答案 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>