Mengatasi Error Missing "Updated" & "Author" Blog di Google Richsnippets

Post a Comment
Google Richsnippets
SALAH satu penyebab blog sulit atau tidak terindeks Google adalah adanya Error: Missing required field "updated" dan Error: Missing required hCard “author” . Itu artinya struktur data blog kita tidak bisa dibaca mesin pencari, terutama Google.

Structrured Data sangat penting buat index blog kita. Percuma 'kan templatenya responsive dan fast loading, tapi Structrured Data buruk alias error?

Berikut ini tips atau cara mengatasi Warning Error: Missing required field "updated" dan Error: Missing required hCard “author” Blog saat dicek Structrured Data di Google Richsnippets.

1. Mengatasi Error: Missing required field "updated"

- Template > Edit HTML
- Temukan kode  <data:post.timestamp/>
- Ganti kode code tersebut dengan kode:
<span class='updated'><data:post.timestamp/></span>
- Save Template!

2. Mengatasi Error: Missing required hCard “author”
- Template > "Edit HTML"
-  Cari kode berikut ini:

<span class='post-author vcard' > 
<b:if cond='data:top.showAuthor'> 
<b:if cond='data:post.authorProfileUrl'> 
<span class='fn'> 
<a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'> 
<data:post.author/> 
</a> 
</span> 
<b:else/> 
<span class='fn'><data:post.author/></span> 
</b:if> 
</b:if> 
</span>

- Ganti SEMUANYA dengan kode berikut ini:

<span class='post-author vcard' itemscope='itemscope' itemtype='http://schema.org/Person'> 
<b:if cond='data:top.showAuthor'> 
<b:if cond='data:post.authorProfileUrl'> 
<span class='fn author'> 
<a expr:href='data:post.authorProfileUrl' rel='author' title='author profile'> 
<span itemprop='name'><data:post.author/></span> 
</a> 
</span> 
<b:else/> 
<span class='fn author'><span itemprop='name'><data:post.author/></span></span> 
</b:if> 
</b:if> 
</span>


JIKA MASIH ERROR, mungkin ada yang kurang! 
Cek kode <div class='post-footer-line post-footer-line-1'> dan pastikan di bawahnya ada kode seperti ini. Jika tidak ada, Copas kode berwarna biru tepat di bawahnya:

<div class='post-footer'>
<div class='post-footer-line post-footer-line-1'>

<span class='post-author vcard'>
<b:if cond='data:top.showAuthor'>
<b:if cond='data:post.authorProfileUrl'>
<span class='fn'>
<a expr:href='data:post.authorProfileUrl' itemprop='author' rel='author' title='author profile'>
<data:post.author/>
</a>
</span>
<b:else/>
<span class='fn'><data:post.author/></span>
</b:if>
</b:if>
</span>

Demikian Mengatasi Error: Missing required field "updated" Blog di Google Richsnippets agar blog kita cepat dan mudah diindeks Google.

Sumber:
http://www.wikihow.com/Fix-Errors-on-Google-Webmaster-Tools-Structured-Data
http://www.mybloggertricks.com/2014/04/fix-structured-data-hatom-errors-in.html
Plus Pengalaman (Utak-Atik Sendiri)

Related Posts

Post a Comment

close