How to Solve Error Data Structures in Webmaster Tools | Since google do the latest updates to the data structure blogspot, many bloggers had an error in the data structure their blog. this is like my own experience of only 10 that error because it is not my fix, but suddenly so I checked the data structures blog on 09 January 2016, amounting to an error that occurred up to 125 errors. WOW...
After I check I had an error in the BlogPosting. The error comes from the image, Publisher, dateModified, and MainEntityOfPage while others are fine. This indicates there is an element that is lacking or wrong to put it. I am confused what to do? I finally found the answer on the site kompiajaib.com.
Well, if you are experiencing the same thing, you can try the experiment I have done below.
- Error Image
Please copy the code below
<b:if cond='data:post.firstImageUrl'>
<div itemprop='image' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
<meta itemprop="url" expr:content='data:post.firstImageUrl'/>
<meta itemprop="width" content='700'/>
<meta itemprop="height" content='700'/>
</div>
</b:if>
<article class='post hentry' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
- Error Publisher
Please copy the code below and save it under the code first step
<div itemprop="publisher" itemscope='itemscope' itemtype="https://schema.org/Organization">
<div itemprop="logo" itemscope='itemscope' itemtype="https://schema.org/ImageObject">
<meta itemprop="url" content="URL LOGO BLOG"/>
<meta itemprop="width" content="600"/>
<meta itemprop="height" content="600"/>
</div>
<meta itemprop="name" expr:content="data:blog.title"/>
</div>
- Error dateModified
Please find the code that displays the date of publication of the posting, usually like this
<a class='updated' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601' itemprop='datePublished'> <data:post.timestamp/></abbr></a>Then add the code <span itemprop = 'dateModified'> so that it becomes like below.
<span itemprop='dateModified'><a class='updated' expr:href='data:post.url' rel='bookmark' title='permanent link'><abbr class='published' expr:title='data:post.timestampISO8601' itemprop='datePublished'> <data:post.timestamp/></abbr></a></span>
- Error MainEntityOfPage
Please copy the code below
<div itemscope='itemscope' itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage"/>
<article class='post hentry' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
By fixing the structure of the code as above, now the error that occurred on my blog started to fall little by little. having to wait for Google to crawl over.
Please check my site just use webmaster tool and insert a link to an existing post article in my site, would have been no error anymore.
Found an article helpful? Donate via Paypal
Disclaimer: Images, Content of articles or videos that exist on the web sometimes come from various sources of other media. Copyright is fully owned by the source. If there is a problem with this matter, you can contact us here.
<strong></strong>
or<b></b>
.<em></em>
or<i></i>
.<u></u>
.<strike></strike>
.<code></code>
or<pre></pre>
or<pre><code></code></pre>
, and please parse the code in the parser box below.