我想在我的主页上添加一个部分,其中包含我所工作过的公司的第三方徽标。要告诉谷歌本节的内容,我想将我的内容包装在richsnippet代码中。 我自己的徽标包含这样:
<span itemscope itemtype="http://schema.org/Organization">
<a itemprop="url" href="http://www.google.de"><!--Link to frontpage -->
<img itemprop="logo" src="http://www.google.de/image.jpg"/><!--Link to logo img -->
</a>
</span>
所以,如果我这样做,谷歌可能会认为这些是我的标志。我怎样才能明确这些是第三方/参考标识?有什么建议吗?
提前致谢! 一切顺利
答案 0 :(得分:2)
解决方案应该是:http://schema.org/Brand
<span itemscope itemtype="http://schema.org/Brand">
<span itemprop="name">Brand name</span>
<a itemprop="url" href="http://www.google.de"><!--Link to frontpage -->
<img itemprop="logo" src="http://www.google.de/image.jpg"/><!--Link to logo img -->
</a>
</span>
差异:组织自己的徽标,参考品牌 - 侧面。