使用Google Rich Snippet将我的商家展示为ChildCare
("儿童保育中心。")我如何指向我在该设施中提供的服务(计划){ {1}}中的{1}}?
例如,我在儿童保育方面提供3项服务(计划),例如“婴儿,幼儿和学龄前儿童"”的计划。我如何使用此优惠来指出这些服务及其选项?
答案 0 :(得分:0)
如果您想将服务建模为Offer
,则可以使用ChildCare
中的makesOffer
属性:
<div itemscope itemtype="http://schema.org/ChildCare">
<div itemprop="makesOffer" itemscope itemtype="http://schema.org/Offer">
<span itemprop="name">For Infants</span>
</div>
<div itemprop="makesOffer" itemscope itemtype="http://schema.org/Offer">
<span itemprop="name">For Toddlers</span>
</div>
<div itemprop="makesOffer" itemscope itemtype="http://schema.org/Offer">
<span itemprop="name">For Preschoolers</span>
</div>
</div>
如果您想将服务建模为Service
,则可以使用Service
中的provider
属性:
<!-- because itemref gets used, this element may not be a child of another Microdata item -->
<div itemprop="provider" itemscope itemtype="http://schema.org/ChildCare" id="the-childcare-business">
</div>
<div itemscope itemtype="http://schema.org/Service" itemref="the-childcare-business">
<span itemprop="name serviceType">Childcare for Infants</span>
</div>
<div itemscope itemtype="http://schema.org/Service" itemref="the-childcare-business">
<span itemprop="name serviceType">Childcare for Toddlers</span>
</div>
<div itemscope itemtype="http://schema.org/Service" itemref="the-childcare-business">
<span itemprop="name serviceType">Childcare for Preschoolers</span>
</div>
主要区别在于,您可以为Offer
提供价格(price
/ priceCurrency
),但不能为Service
提供价格。
你当然也可以使用这两种类型。