Reputation: 514
I know how to markup a single telephone number for a local business.
But I'm unsure for a business with multiple phone numbers.
Do I need to bound each element with a new itemscope?
Example:
Company X
main tel: 555-1234
sale tel: 555-1235
help tel: 555-1236
Upvotes: 1
Views: 2347
Reputation: 371
You don't need a new itemscope - you can just repeat the telephone property of the LocalBusiness:
<div itemscope itemtype="http://schema.org/LocalBusiness">
<h1 itemprop="name">Company X</h1>
<!-- some other information here -->
<p>
main tel: <span itemprop="telephone">555-1234</span><br>
sale tel: <span itemprop="telephone">555-1235</span><br>
help tel: <span itemprop="telephone">555-1236</span>
</p>
<!-- some other information here -->
</div>
Upvotes: 2