Aşağıdakiler , beklendiği gibi Google Yapısal Veri Test Aracı'ndan geçer :
<div>
<div itemprop="publisher" itemscope id="organization-example" itemtype="https://schema.org/Organization">
<a itemprop="url" href="https://example.com">
<img itemprop="image logo" src="https://example.com/images/logo.png" alt="LOGO">
<span itemprop="name">EXAMPLE</span>
<span itemprop="description">This is an EXAMPLE</span>
</a>
</div>
</div>
<div itemscope itemtype="https://schema.org/WebPage" itemref="organization-example">
</div>
Ama bir kullanmayı denediğimde özelliği BlogPosting
tatili logo
:
<div>
<div itemprop="publisher" itemscope id="organization-example" itemtype="https://schema.org/Organization">
<a itemprop="url" href="https://example.com">
<img itemprop="image logo" src="https://example.com/images/logo.png" alt="LOGO">
<span itemprop="name">EXAMPLE</span>
<span itemprop="description">This is an EXAMPLE</span>
</a>
</div>
</div>
<article
itemscope
itemtype="https://schema.org/BlogPosting"
itemref="organization-example"
>
</article>
Hata ile:
https://example.com/images/logo.png
(Logo.itemtype özelliğinin değeri geçersiz.)
Biri nedenini açıklayabilir mi? Düzeltmek için hangi adımları atabilirim?
itemprop
aynı satırda itemtype
.
itemprop
, ile aynı satırda kullanmaktanitemtype
kaçınmalısınız.<body itemscope itemtype="https://schema.org/Organization">
O zaman<article itemscope itemtype="https://schema.org/BlogPosting">
<span itemprop="publisher">
vb kullanmak daha iyi ... Özellikle bir blog yazısı, logo birden fazla kez tekrarlamaya gerek olmamalıdır.