In this post, I will describe a simple solution for Json Meta Data not showing in blogger themes, like Notable Blogger Theme and some other templates, in spite of the JSON Structured Dat embedded in Default Blogger or adding the structured data in other templates.
If you wish to add JSON Structured Data to your theme, you can follow this tutorial.
First backup your template and then search for - <article class='post-outer-container'>
The default code is shown below:
<article class='post-outer-container'>
<!-- Post title and body -->
<div class='post-outer'>
<b:include data='post' name='post'/>
</div>
You have to add - <b:include data='post' name='postMeta'/> below <article class='post-outer-container'> as shown in the image given below and you are done.
If you wish to add JSON Structured Data to your theme, you can follow this tutorial.
First backup your template and then search for - <article class='post-outer-container'>
The default code is shown below:
<article class='post-outer-container'>
<!-- Post title and body -->
<div class='post-outer'>
<b:include data='post' name='post'/>
</div>
You have to add - <b:include data='post' name='postMeta'/> below <article class='post-outer-container'> as shown in the image given below and you are done.
<article class='post-outer-container'>
<b:include data='post' name='postMeta'/>
<!-- Post title and body -->
<div class='post-outer'>
<b:include data='post' name='post'/>
</div>
In case you do not have the correct JSON structured data, you can refer to this post here: How to Resolve Structured Data Errors in Blogger Themes.
<!-- Post title and body -->
<div class='post-outer'>
<b:include data='post' name='post'/>
</div>
In case you do not have the correct JSON structured data, you can refer to this post here: How to Resolve Structured Data Errors in Blogger Themes.
Comments
Post a Comment