itemprop="url"指的是添加代码的页面吗?
Does itemprop="url" refer to the page where the code is added?
我想为我的社交资料添加微数据。我读到我可以用这种方式添加它:
<span itemscope itemtype="http://schema.org/Organization">
<link itemprop="url" href="http://www.your-company-site.com">
<a itemprop="sameAs" href="http://www.facebook.com/your-company">FB</a>
<a itemprop="sameAs" href="http://www.twitter.com/YourCompany">Twitter</a>
</span>
但我对
有出价疑问
<link itemprop="url" href="???????????">
我的主页上有我的社交按钮(links 到社交资料),还有我网站的其他页面。所以这个微数据会一直存在。因此总是错误的:
<link itemprop="url" href="http://www.homepage.com">
所以总是一样link(主页),社交按钮(和微数据)也会出现在其他页面中吗?
Organization
的 url
property 用于提供组织的 URL。这通常是组织网站的主页。
因此,无论您在何处提供 Organization
项,始终具有相同的 url
值是正确的。同样,组织的 name
, address
等也将始终相同。
在此url
下不需要提供结构化数据,但这样做当然有意义。
我想为我的社交资料添加微数据。我读到我可以用这种方式添加它:
<span itemscope itemtype="http://schema.org/Organization">
<link itemprop="url" href="http://www.your-company-site.com">
<a itemprop="sameAs" href="http://www.facebook.com/your-company">FB</a>
<a itemprop="sameAs" href="http://www.twitter.com/YourCompany">Twitter</a>
</span>
但我对
有出价疑问<link itemprop="url" href="???????????">
我的主页上有我的社交按钮(links 到社交资料),还有我网站的其他页面。所以这个微数据会一直存在。因此总是错误的:
<link itemprop="url" href="http://www.homepage.com">
所以总是一样link(主页),社交按钮(和微数据)也会出现在其他页面中吗?
Organization
的 url
property 用于提供组织的 URL。这通常是组织网站的主页。
因此,无论您在何处提供 Organization
项,始终具有相同的 url
值是正确的。同样,组织的 name
, address
等也将始终相同。
在此url
下不需要提供结构化数据,但这样做当然有意义。