谁能告诉我Google在显示带有搜索结果的图片时会如何决定使用哪张图片(有时与移动搜索一样)?
如果您查看这些移动搜索结果...
…并以AliExpress.com的结果为例,通过检查HTML,您可以看到Google使用的图像似乎没有特殊声明,等等。这只是该页面HTML中出现的第一个JPG-因此,我也许这就是为什么它是Google搜索结果中使用的图像的原因。
但是,当您查看这些移动搜索结果时…
…并考虑“背包广告牌”结果,HTML显示正在使用的图像实际上是HTML中声明的第七张图像。
那么,谁能阐明Google如何确定要显示的图像呢?我想知道,这样我就可以控制为我的网站显示哪个图像。
更新/解决方案
感谢下面的回答,这是我现在添加到head
HTML中的代码,以便在搜索背包广告牌时在Google中显示缩略图:
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Product",
"name": "Regular Backpack Billboard",
"image": [
"https://backpackbillboards.com/wp-content/uploads/2017/12/backpack-billboards-1x1.jpg",
"https://backpackbillboards.com/wp-content/uploads/2017/12/backpack-billboards-4x3.jpg",
"https://backpackbillboards.com/wp-content/uploads/2017/12/backpack-billboards-16x9.jpg"
],
"description": "Backpack Billboards feature a rechargeable battery which powers the internal LED lights providing a bright illuminated display for up to 8 hours.",
"sku": "BPBB8",
"brand": {
"@type": "Thing",
"name": "Backpack Billboards"
},
"offers": {
"@type": "Offer",
"priceCurrency": "USD",
"price": "299.00",
"priceValidUntil": "2020-11-11",
"itemCondition": "http://schema.org/NewCondition",
"availability": "http://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Backpack Billboards"
}
}
}
</script>
alt
标签,title
标签或文件名等中?