Google adsense ads is best plateform of online earn money, the easiest way to gain money from your blog is through Google AdSense, it is really important to put adsense ads in the right place where full visibility is possible. This post to view advertising in the right position to produce high blog revenue and add value to your writing skills.
Google adsense ads more display in blogger inner posts automatically, We have developed custom script code for more adsense ads show on blogger post, it's code 100% working for multiple adsense ads display in blogspot posts, your article in should be used html tags example - <br/> tags, <p>..</p> tags, <h1> to <h6> tags etc, basicly this ads code show reading your html tags used in blogger post, if you are not using any html tags in blogger articles, otherwise this code will be not properly work.
You can do multiple adsense ads show in blogger inner post according your post on using html tags, this is the best or simple trick for automatic multiple google ads view in middle all articles.

How to display multiple adsense ads in inside blogger all articles

how_to_display_more_adsense_ads_in_blogger_all_posts

Steps below do following for insert in article multiple adsense ads in blogspot all posts auto ads showing - 100% code working
  1. Sign in to Blogger Website.
  2. Left menu tools, click on theme option.
  3. Top section on down arrow icon, click on there Edit Html option.
  4. First do keep backup your theme template.
  5. Find this code <data:post.body/> in blogspot theme template.
  6. Open your google adsense ads account .
  7. Copy your adsense ads unit code for convert in xml format - ads unit code converter here .
  8. After then adsense ads code copy xml format from coverter tool box.
  9. We have created below on code three (3) unique div ids names - custom-ads-content1 and custom-ads-content2 and custom-ads-content3 in paste xml format adsense ads code.
  10. See below on custom script code getElementsByTagName("br") and getElementsByTagName("p") and getElementsByTagName("h3")
    we used 3 html elements tags on code br, p, h3 you can do change this elements names according your post design on html tags.
  11. Complete process after then replace below ads code with <data:post.body/> in blogger theme template
  12. Click on Save button after replaced custom script adsense ads code.

How to adsense ads show in middle blogger single articles between text paragraph

Copy this code -
  
 <b:if cond='data:blog.pageType == "item"'>
<div id='custom-ads-target'>
 <data:post.body/>
</div>
<div id='custom-ads-content1'>
<div style='margin:15px 0;text-align:center;clear:both;'>

<!--adsense ads xml format code past here--->
    
</div>  
 </div>
 
 <div id='custom-ads-content2'>
<div style='margin:15px 0;text-align:center;clear:both;'>

  <!--adsense ads xml format code past here--->
   
</div>  
 </div>
 
 <div id='custom-ads-content3'>
<div style='margin:15px 0;text-align:center;clear:both;'>

  <!--adsense ads xml format code past here--->
   
</div>  
 </div>
 
 
<div id='custom-ads-target'>

 <script type='text/javascript'>
function insertAfter(addition,target) {
var parent = target.parentNode;
if (parent.lastChild == target) {
parent.appendChild(addition); 
} else {
parent.insertBefore(addition,target.nextSibling);
}
}
var adscont = document.getElementById("custom-ads-content1");
var target = document.getElementById("custom-ads-target");
var linebreak = target.getElementsByTagName("br");
if (linebreak.length > 0){
insertAfter(adscont,linebreak[3]);
}
</script>

<script type='text/javascript'>
function insertAfter(addition,target) {
var parent = target.parentNode;
if (parent.lastChild == target) {
parent.appendChild(addition); 
} else {
parent.insertBefore(addition,target.nextSibling);
}
}
var adscont = document.getElementById("custom-ads-content2");
var target = document.getElementById("custom-ads-target");
var linebreak = target.getElementsByTagName("p");
if (linebreak.length > 0){
insertAfter(adscont,linebreak[3]);
}
</script>

<script type='text/javascript'>
function insertAfter(addition,target) {
var parent = target.parentNode;
if (parent.lastChild == target) {
parent.appendChild(addition); 
} else {
parent.insertBefore(addition,target.nextSibling);
}
}
var adscont = document.getElementById("custom-ads-content3");
var target = document.getElementById("custom-ads-target");
var linebreak = target.getElementsByTagName("h3");
if (linebreak.length > 0){
insertAfter(adscont,linebreak[0]);
}
</script>

</div>
</b:if>
<b:if cond='data:blog.pageType == "static_page"'><data:post.body/></b:if>