There are different types of structured data used in blogger such as microdata.org, schema markup and js-ld markup. This Fix works with all the formats of rich spinets in search console and you can monitor the fix in implementation through structured data testing tool provided by Google. Follow the below instructions step by step and replace lines of code with errors with the provided Fix.
Fix Missing: author Error in Blogger
- Open Blogger.com and Sign in to your Account
- Navigate to Theme ( Located on left side menu bar )
- Click on Edit HTML
- Locate the code below
<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>
5. Replace the code with script below
<span class='post-author vcard'>
<b:if cond='data:top.showAuthor'>
<b:if cond='data:post.authorProfileUrl'>
<span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta expr:content='data:post.authorProfileUrl' itemprop='url'/>
<a class='g-profile' expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
<span itemprop='name'><data:post.author/></span>
</a>
</span>
<b:else/>
<span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<span itemprop='name'><data:post.author/></span>
</span>
</b:if>
</b:if>
</span>
6. Save your template theme
The missing author error on your Google search console is fixed by the above code implementation. You can analyze your website code again with google search console structured data testing tool to ensure your Schema or Microdata Jslod structured data is correct without any further errors.
If you like this article, there are plenty schema structured data options to integrate to your blogger website for better SEO all correct and for different kinds of blogger niche websites.
Post a Comment