为产品启用Google Rich Snippets

时间:2016-03-05 11:12:38

标签: schema.org microdata rich-snippets google-rich-snippets

我在网页上添加了产品丰富的代码段。过了一段时间后,我可以在Google网站站长工具页面上看到Google抓取了我的网站并找到了结构化数据。我还通过testing tool测试了我的产品页面,并显示全部好。但是在搜索页面时我看不到结果。 Google仍然会显示常规页面,而不是适当的项目。

我提出的项目是:

  • 名称
  • 图像
  • 描述
  • 价格
  • PriceCurrency
  • 状况

这是我的HTML:

<div itemscope itemtype="http://schema.org/Product">

  <h3 itemprop="name">Product Name</h3>
  <img itemprop="image" src="image_url" />
  <div itemprop="description">
    <p>Product Description</p>
  </div>
  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
      <p><strong>Price: </strong>
        <span itemprop="priceCurrency" content="USD">$</span>
        <span itemprop="price" content="125">125</span>
        <link itemprop="availability" href="http://schema.org/InStock"/>                                                 
      </p>
  </div>

</div>

启用Rich Snippets时还有其他事项要记住吗?

0 个答案:

没有答案