gpt4 book ai didi

html - 我可以使用 http ://schema. org/Organization 的多个实例吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:37:23 24 4
gpt4 key购买 nike

我有一个列出多家公司的网站,我的标记是这样的:

<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 以帮助爬虫更好地识别内容。

  1. 这是对 https://schema.org/Organization 的适当使用吗?
  2. 如何使我自己的 https://schema.org/Organization 与我列出的公司标记不冲突?

最佳答案

是的,为此目的使用多个 Organization 项是正确的。

要明确表示您自己的 Organization 不在此列表中,您可以

如果此组织列表是该页面的主要内容,您可以使用 mainEntity(对于 ItemList)并使用 CollectionPage而不是 WebPage:

<body itemscope itemtype="http://schema.org/CollectionPage">

<div itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
</div>

<section itemprop="mainEntity" itemscope itemtype="http://schema.org/ItemList">
<h2>Checkout those <span itemprop="name">cool companies</span></h2>
<article itemprop="itemListElement" itemscope itemtype="http://schema.org/Organization"></article>
<article itemprop="itemListElement" itemscope itemtype="http://schema.org/Organization"></article>
<article itemprop="itemListElement" itemscope itemtype="http://schema.org/Organization"></article>
</section>

</body>

关于html - 我可以使用 http ://schema. org/Organization 的多个实例吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39402664/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com