如何在微数据中组合 Schema.org 项类型?
How to combine Schema.org itemtypes in Microdata?
我需要描述一个LocalBusiness
,它既是保龄球,又能提供食物。
<div class="col-md-4" itemscope itemtype="http://schema.org/BowlingAlley">
<link itemprop="additionalType" href="http://schema.org/Restaurant">
<div class="widget-item">
<h3 class="widget-title" itemprop="name">My Bowling</h3>
<div class="sample-thumb">
<img itemprop="image" src="~/Content/images/bowling.jpg">
</div>
<p itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">Somestreet 33</span>
<br>
<span itemprop="postalCode">1000</span> <span itemprop="addressLocality">Brussels</span>
</p>
<p>
<span itemprop="telephone">(+32) 123/456 789</span>
<br>
<span itemprop="email">info@mybowling.be</span>
<br>
<a href="www.mybowling.be" itemprop="url" target="_blank">www.mybowling.be</a>
<meta itemprop="servesCuisine" content="European">
</p>
</div>
</div>
我尝试使用 additionalType
Restaurant
但是对于 Google Validator 这个 servesCuisine
作为 BowlingAlley
的 "Unknown property" 失败了。
itemtypes如何正确组合?
我用过的资源:
您的标记完全没问题。这是 google 测试仪的一个已知问题。
我已经用 :
测试过了
您可以在此处获取更多信息:https://softwarerecs.stackexchange.com/questions/13674/online-microdata-parser
我需要描述一个LocalBusiness
,它既是保龄球,又能提供食物。
<div class="col-md-4" itemscope itemtype="http://schema.org/BowlingAlley">
<link itemprop="additionalType" href="http://schema.org/Restaurant">
<div class="widget-item">
<h3 class="widget-title" itemprop="name">My Bowling</h3>
<div class="sample-thumb">
<img itemprop="image" src="~/Content/images/bowling.jpg">
</div>
<p itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">Somestreet 33</span>
<br>
<span itemprop="postalCode">1000</span> <span itemprop="addressLocality">Brussels</span>
</p>
<p>
<span itemprop="telephone">(+32) 123/456 789</span>
<br>
<span itemprop="email">info@mybowling.be</span>
<br>
<a href="www.mybowling.be" itemprop="url" target="_blank">www.mybowling.be</a>
<meta itemprop="servesCuisine" content="European">
</p>
</div>
</div>
我尝试使用 additionalType
Restaurant
但是对于 Google Validator 这个 servesCuisine
作为 BowlingAlley
的 "Unknown property" 失败了。
itemtypes如何正确组合?
我用过的资源:
您的标记完全没问题。这是 google 测试仪的一个已知问题。 我已经用 :
测试过了您可以在此处获取更多信息:https://softwarerecs.stackexchange.com/questions/13674/online-microdata-parser