0
내가 여러 회사를 나열 웹 사이트가, 내 마크 업 이런 식입니다 :http://schema.org/Organization의 여러 인스턴스를 사용할 수 있습니까?
<h2>Checkout those cool companies</h2>
<div itemscope="itemscope" itemtype="https://schema.org/Organization">
<img itemprop="logo" src="logo1.jpg" alt="">
<h3 itemprop="name">Company1</h3>
<p itemprop="description">It's a great company</p>
<span itemprop="url">http://company1.com</span>
</div>
<div itemscope="itemscope" itemtype="https://schema.org/Organization">
<img itemprop="logo" src="logo2.jpg" alt="">
<h3 itemprop="name">Company2</h3>
<p itemprop="description">It's a great company as well</p>
<span itemprop="url">http://company2.com</span>
</div>
<div itemscope="itemscope" itemtype="https://schema.org/Organization">
<img itemprop="logo" src="logo3.jpg" alt="">
<h3 itemprop="name">Company3</h3>
<p itemprop="description">It's a amazing company</p>
<span itemprop="url">http://company3.com</span>
</div>
을 더 나은 내용을 확인 크롤러를 돕기 위해 itemtype="https://schema.org/Organization
배수 시간을 사용하고 있습니다.
https://schema.org/Organization
을 적절하게 사용합니까?https://schema.org/Organization
은 내가 목록에있는 회사 마크와 충돌하지 않도록하려면 어떻게해야합니까?
주 엘레멘트'url'의 값이 URL이되어야한다면 (엘레멘트 대신). 따라서 'span'대신에 예를 들어 'a' (또는 '링크', 클릭 할 수없는 경우). – unor