0

我们正在开发一个新网站,我热衷于以 Rich Snippets 的形式为我们的产品和服务页面实施丰富的片段和更具描述性的元数据。

我的问题是我们的产品和服务不能直接从网站购买,因为它们是根据用户要求定制和定制的。因此,他们没有价格和库存水平。

我从谷歌指南中注意到他们声明:

该产品应该可以直接在页面上购买

我的问题是,使用丰富网页摘要描述这些产品和服务的最佳和最合适的方式是什么?我可以完全使用丰富网页摘要来描述这些产品和服务吗?

4

1 回答 1

4

考虑将schema.org/AggregateOffer用于 Product Rich Snippets。尽管它的主要用例是标记不同卖家提供的一种产品,但它似乎也适合您。它允许指示最低和最高价格 - 我猜您甚至对定制产品也有一些价格限制。

如果您在您的网站上有对这些产品的评论,则评论丰富的片段适用于您。为此,请使用schema.org/Reviewschema.org/AggregateRating

两者的示例:

<div itemscope itemtype="http://schema.org/Product">
  <img itemprop="image" src="cute_dress.jpg" />
  <span itemprop="name">Very Cute Dress</span>

  <div itemprop="aggregateRating"
    itemscope itemtype="http://schema.org/AggregateRating">
    <span itemprop="ratingValue">87</span>
    out of <span itemprop="bestRating">100</span>
    based on <span itemprop="ratingCount">24</span> user ratings
  </div>

  <div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
    <span itemprop="lowPrice">$1250</span>
    to <span itemprop="highPrice">$1495</span>
  </div>
</div>


会给你_

在此处输入图像描述

面包屑是您的另一个选择。为此目的使用 data-vocabulary.org,因为 schema.org 中的面包屑是杂乱且不完整的。

例子:

<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
  <a href="http://www.example.com/dresses" itemprop="url">
    <span itemprop="title">Dresses</span>
  </a> ›
</div>  
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
  <a href="http://www.example.com/dresses/real" itemprop="url">
    <span itemprop="title">Real Dresses</span>
  </a> ›
</div>  
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
  <a href="http://www.example.com/clothes/dresses/real/green" itemprop="url">
    <span itemprop="title">Real Green Dresses</span>
  </a>
</div>


会给你 _在此处输入图像描述

于 2013-09-03T10:11:06.000 回答