您能帮我解决一下如何设置Google Rich Snippet作为托儿服务吗?
我的具体问题是,我应该将itemtype
注册为LocalBusiness
<div itemscope itemtype="http://schema.org/LocalBusiness">
或直接作为ChildCare
喜欢
<div itemscope itemtype="http://schema.org/ChildCare">
答案 0 :(得分:0)
作为一般规则,您应始终选择最具体的类型。
因此,如果您的商家符合ChildCare
(&#34;儿童保育中心。&#34;)的说明,您应该使用此类型而不是更通用的LocalBusiness
(甚至是最一般的Thing
)。
每个符合条件的消费者都应该能够理解ChildCare
是某种LocalBusiness
。只有当类型非常新(或者如果他们不再更新/维护他们的产品)时,消费者可能需要一些时间才能识别它。
如果您想确保这些消费者也理解它,您可以提供以下两种类型:
<div itemscope itemtype="http://schema.org/ChildCare http://schema.org/LocalBusiness">
</div>
但通常不需要。