gpt4 book ai didi

seo - 我的结构数据有什么问题?

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

我们的丰富网页摘要突然消失了 4 个多月,GWT 中报告了一些错误,我更正了所有错误,现在错误正在减少(只剩下 5 个)。这是我的代码:

<section class="c-center" itemscope itemtype="http://schema.org/Product">
<div>
<h1><span itemprop="name">Product name</span> <span itemprop="brand" class="brand"><a href="/link-to-brand/">Brand of product</a></span></h1>
<div id="reviews" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<div class="rating">
<meta itemprop="ratingValue" content="4.8" />
<meta itemprop="ratingCount" content="56" />
<div class="fill" style="width:96%"></div>
<div class="stars"></div>
</div>
<div class="rating-info">
<a href="#ratings-reviews">Based on 56 reviews</a> - <a href="#">Write a review</a>
</div>
</div>
</div>

<div id="img">
<img src="/link-to-image.jpg" alt="Img alt" itemprop="image" />
</div>

<div id="info">
<meta itemprop="url" content="site.com/link-of-product/">
<div id="price-container" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<meta itemprop="priceCurrency" content="EUR">
<meta itemprop="gtin13" content="1234567899999">
<span class="price" itemprop="price">19,95 €</span> <del>28,50 €</del> -
<span class="stock"><link itemprop="availability" href="http://schema.org/InStock">Available</span>
</div>
</div>
</section>

这是我的问题:
1-有什么问题吗?
2- 我在许多帖子中看到货币不应该出现在 itemprop="price" 中,但在 google 示例中,它们确实包括了它!我应该怎么办?
3- 我应该使用 ratingCount 还是 reviewCount
4- 一些产品有不同的尺寸和不同的价格,是否建议包含最低和最高价格的AggregateOffer

非常感谢

最佳答案

它在视觉上表现如何?

structured data linter 显示了一个典型的片段,它看起来不错并且有星级,并且在 google 的工具中没有错误。突出的两件事是:

  • url 没有协议(protocol),设置为 http://yoursite.com/page1 for
  • 价格应该只是数字,这很可能会影响搜索结果,货币是一个单独的字段,因此不应包含在价格中
  • 使用 <meta> 以句点作为分隔符(而不是逗号)来给出您的价格,并将较大的值作为 1234567.89 而不是 1,234,567.89 或 1.234.567,89,但会像往常一样显示

price info from http://schema.org/

Use the priceCurrency property (with ISO 4217 codes e.g. "USD") instead of including ambiguous symbols such as '$' in the value.

Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.

Note that both RDFa and Microdata syntax allow the use of a "content=" attribute for publishing simple machine-readable values alongside more human-friendly formatting.

Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.

google 实际上在它的 policies page 中给出了这个例子

<span itemprop="priceCurrency" content="USD">$</span><span itemprop="price">119.99</</span>
  • 以前的报价,您可以在 <del> 结构化数据中包含过期的报价,priceValidUntil 设置为过去的日期,当前价格也可以有到期日。

  • 考虑将 itemCondition 设置为 http://schema.org/NewCondition

  • 图像 url - 我注意到完整的 url 起始路径而不是相对路径似乎是首选 - 你的 /link-to-image.jpg 在测试工具中被解释为 http://example.com/link-to-image.jpg 而不是 http://site. com/link-to-image.jpg,我不确定这是否相同直接从 URL 测试时,但最好不要搞混

  • 最后使用购物搜索工具,包括 google shopping 来搜索畅销商品,看看它是否可以通过价格、品牌、可用性等找到它。如果竞争对手网站首先出现,您甚至可以检查结构化数据测试器用他们的 URL 看看你是否遗漏了什么

关于seo - 我的结构数据有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32796167/

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