gpt4 book ai didi

seo - 在 JSON-LD 中创建产品数组

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:30:33 27 4
gpt4 key购买 nike

有人可以发现我下面的代码有什么问题吗? (它未在 Google 结构化测试工具中验证。)我正在尝试创建 JSON-LD 代码以添加到具有多个待售产品的页面。

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@graph": [
{
"@type": “Product”,
"name": “tshirt",
“description”: "test copy 1.”,
“image”: “image.jpg”
},
{
"@type": “Product”,
"name": “tshirt 2",
“description”: "test copy 2.”,
“image”: “image2.jpg”
}
]
}
</script>

非常感谢任何帮助!

最佳答案

你在某些地方使用了而不是

替换这些,您的代码段验证:

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@graph": [
{
"@type": "Product",
"name": "tshirt",
"description": "test copy 1.",
"image": "image.jpg"
},
{
"@type": "Product",
"name": "tshirt 2",
"description": "test copy 2.",
"image": "image2.jpg"
}
]
}
</script>

更新:此代码段未使用 Google Rich Results Test 进行验证了。架构正在积极开发中,因此有时需求会在一段时间后发生变化。对于产品列表,Google 建议称为 carousel .

关于seo - 在 JSON-LD 中创建产品数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31729025/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com