我已经在网站上使用JSON-LD实现了面包屑架构标记。我最多有5个位置(级别)的面包屑,并且我的代码已使用结构化数据测试工具正确验证。
但是,我注意到Google并未在搜索结果页面上显示完整的面包屑。例如,对于具有3个位置的页面(如下示例代码),Google仅显示2个,例如:
https://www.example.com
>跳线>男士
我的代码有什么问题吗?
此代码位于https://www.example.com/jumpers/mens/designer
上:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Jumpers",
"item": "https://www.example.com/jumpers"
}
,{
"@type": "ListItem",
"position": 2,
"name": "Mens",
"item": "https://www.example.com/jumpers/mens"
}
,{
"@type": "ListItem",
"position": 3,
"name": "Designer",
"item": "https://www.example.com/jumpers/mens/designer"
}]
}
</script>