Google tarafından önerilen makale yapılandırılmış verilerine bir göz attım ve yeni bir zorunlu ve önerilen alanların olduğunu gördüm, geçen hafta orada değildi. Bağlantı burada:
https://developers.google.com/structured-data/rich-snippets/articles
Listedeki ilk özellik:
- mainEntityOfPage. @ id (önerilir)
Özelliğin değeri ne olduğunu anlamıyorum? Bu özellik nedir? Bir bağlantı mı:
..veya şu anki blog yazısına bir bağlantı:
Örnek kodlarında bu var:
<meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="https://google.com/article" />
Şu anda sahip olduğum şey, henüz test aracının kurallarına uymuyor - Hala gerekli tüm özellikleri eklemekle meşgulüm ve aynı zamanda önerilen özellikleri de buraya eklemeye çalışıyorum:
<div itemscope itemtype="http://schema.org/BlogPosting">
<h1 itemprop="headline">
<a href="http:///www.example.com/blog/1001/my-blog-article" itemprop="url">My Blog Article</a>
</h1>
<p>Written by
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Mase Kind</span>
</span> on
<time itemprop="datePublished" datetime="2015-11-16T15:30:00+02:00">November 16, 2015</time>
<meta itemprop="dateModified" content="2015-12-10T12:29:00+02:00" />
<div itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<div itemprop="logo" itemscope itemtype="http://schema.org/ImageObject"></div>
<meta itemprop="name" content="My Company Name" />
</div>
</p>
<div itemprop="articleBody">
<p>first article body</p>
</div>
</div>
Belgemde de bu var:
<body itemscope itemtype="http://schema.org/WebPage">
...
</body>
Bu, Google tarafından sağlanan kod örneğiyle herhangi bir şekilde çelişecek mi?