如果您试图获得旋转木马富卡,那么您所定义的内容存在一些问题。
第一个问题是,您的页面是一个摘要页面,带有指向文章的链接。您需要按此处所述定义它们
https://developers.google.com/search/docs/guides/mark-up-listings
在
摘要页面+多个完整详细信息页面
在摘要页面上,您需要将结构化数据定义为简化的项目列表。确保增加每个项目的位置。
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"ItemList",
"itemListElement":[
{
"@type":"ListItem",
"position":1,
"url":"http://example.com/desserts/apple-pie"
},
{
"@type":"ListItem",
"position":2,
"url":"http://example.com/desserts/cherry-pie"
},
{
"@type":"ListItem",
"position":3,
"url":"http://example.com/desserts/blueberry-pie"
}
]
}
</script>
在链接的文章页面上,您需要将结构化数据定义为文章。
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://google.com/article"
},
"headline": "Article headline",
"image": {
"@type": "ImageObject",
"url": "https://google.com/thumbnail1.jpg",
"height": 800,
"width": 800
},
"datePublished": "2015-02-05T08:00:00+08:00",
"dateModified": "2015-02-05T09:20:00+08:00",
"author": {
"@type": "Person",
"name": "John Doe"
},
"publisher": {
"@type": "Organization",
"name": "Google",
"logo": {
"@type": "ImageObject",
"url": "https://google.com/logo.jpg",
"width": 600,
"height": 60
}
},
"description": "A most wonderful article"
}
</script>