Google AdSense is the best way to earn revenue through your blog. For this purpose placement of ads on right place is very important where coverage is maximum. In this post, we will discuss advanced practices to display ads at the right place to generate high revenue from your blog and give worth to your writing skill. There are two places in a post where there is high coverage of an ad unit. Coverage of ad unit means clear visibility to readers and more chances of getting clicks. One of the most important location is just below post title/ start of the post and other is middle of the post. In this article, we will also discuss how to put AdSense inside Blogger post only. Ads on the Blogger Static Pages will not appear.
Most recent version here –
Display AdSense Inside Blogger Post Automatically
Hereunder is a script that will show ads at the start and middle of the post automatically. This script finds the middle part of the blog post and automatically place an ad. For some blog like tech blogs where HTML code sharing is common will not work perfectly it might come between shared code. But on all other blogs, it will work perfectly.
This code is also for those who are using scripts to show the post excerpt on their home page.
CASE-I: For those who are using post excerpt on the home page.
To use this script go to theme HTML and search for <data:post.body/> and replace this code with the following code, and hit the save button.
CASE-II: For those who are using default Blogger theme i.e. no post excerpt on the home page.
To use this script go to theme HTML and search for <data:post.body/> and replace this code with the following code,
<b:if cond='data:blog.pageType == "index"'> <data:post.body/> </b:if>
Now paste the following code just above it, and hit the save button.
<!-- Ads in mid of post: automatically --> <b:if cond='data:blog.pageType == "item"'> <div expr:id='"atmid" + data:post.id'/> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at mid of the post --> </div> <div expr:id='"attop" + data:post.id'> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at top of the post --> </div> <data:post.body/> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at bottom of the post --> </div> </div> </b:if> <script type="text/javascript"> var obj0=document.getElementById("atmid<data:post.id/>"); var obj1=document.getElementById("attop<data:post.id/>"); var s=obj1.innerHTML; var t=s.substr(0,s.length/2); var r=t.lastIndexOf(" "); if(r>0) {obj0.innerHTML=s.substr(0,r);obj1.innerHTML=s.substr(r+1);} </script> <!-- Ads in mid of post: automatically -->
If you want to display ads on certain posts, you can use post label to control ads visibility. The following script may work for you.
To use this script go to theme HTML and search for <data:post.body/> and replace this code with the following code, and save the changes.
<!-- Ads in mid of post: automatically --> <b:if cond='data:blog.pageType == "item"'> <div expr:id='"atmid" + data:post.id'/> <b:loop values='data:post.labels' var='label'> <b:if cond='data:label.name == "Label-Name"'> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at mid of the post --> </div> </b:if> </b:loop> <div expr:id='"attop" + data:post.id'> <b:loop values='data:post.labels' var='label'> <b:if cond='data:label.name == "Label-Name"'> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at top of the post --> </div> </b:if> </b:loop> <data:post.body/> <b:loop values='data:post.labels' var='label'> <b:if cond='data:label.name == "Label-Name"'> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at bottom of the post --> </div> </b:if> </b:loop> </div> </b:if> <script type="text/javascript"> var obj0=document.getElementById("atmid<data:post.id/>"); var obj1=document.getElementById("attop<data:post.id/>"); var s=obj1.innerHTML; var t=s.substr(0,s.length/2); var r=t.lastIndexOf(" "); if(r>0) {obj0.innerHTML=s.substr(0,r);obj1.innerHTML=s.substr(r+1);} </script> <!-- Ads in mid of post: automatically -->
Notes –
1. You can use three different labels for three different ads at top, mid and bottom of the post. Must change value Label-Name with actual Label of your post.
2. Must change following three values with your three different/same ad code.
<!– Paste Ad code here: Appear at top of the post –>
<!– Paste Ad code here: Appear at mid of the post –>
<!– Paste Ad code here: Appear at bottom of the post –>
Put AdSense in the Middle of Blogger Post
If you want to place an ad at the custom location in between post, then there is also a solution for you. You have to place <– ads –> tag where you want to show the ad i.e. at the custom location in between your every post.
To use this script go to theme HTML and search for <data:post.body/> and replace this code with the following code, and save the changes.
<!-- Ads in mid of post: automatically --> <b:if cond='data:blog.pageType == "item"'> <div expr:id='"atmid" + data:post.id'/> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at mid of the post --> </div> <div expr:id='"attop" + data:post.id'> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at top of the post --> </div> <data:post.body/> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at bottom of the post --> </div> </div> </b:if> <script type="text/javascript"> var obj0=document.getElementById("atmid<data:post.id/>"); var obj1=document.getElementById("attop<data:post.id/>"); var s=obj1.innerHTML; var r=s.search(/x3C!-- ads --x3E/igm); if(r>0) {obj0.innerHTML=s.substr(0,r);obj1.innerHTML=s.substr(r+13);} </script> <!-- Ads in mid of post: automatically -->
Same as I explained above if you want to display ads on certain posts, you can use post label to control ads visibility. The following script may work for you.
If you want to place an ad at the custom location in between post, then there is also a solution for you. You have to place <– ads –> tag where you want to show the AdSense inside Blogger post.
To use this script go to Theme HTML and search for <data:post.body/> and replace this code with the following code, and save the changes.
<!-- Ads in mid of post: automatically --> <b:if cond='data:blog.pageType == "item"'> <div expr:id='"atmid" + data:post.id'/> <b:loop values='data:post.labels' var='label'> <b:if cond='data:label.name == "Label-Name"'> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at mid of the post --> </div> </b:if> </b:loop> <div expr:id='"attop" + data:post.id'> <b:loop values='data:post.labels' var='label'> <b:if cond='data:label.name == "Label-Name"'> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at top of the post --> </div> </b:if> </b:loop> <data:post.body/> <b:loop values='data:post.labels' var='label'> <b:if cond='data:label.name == "Label-Name"'> <div style="clear:both; margin:10px 0;text-align:center"> <!-- Paste Ad code here: Appear at bottom of the post --> </div> </b:if> </b:loop> </div> </b:if> <script type="text/javascript"> var obj0=document.getElementById("atmid<data:post.id/>"); var obj1=document.getElementById("attop<data:post.id/>"); var s=obj1.innerHTML; var r=s.search(/x3C!-- ads --x3E/igm); if(r>0) {obj0.innerHTML=s.substr(0,r);obj1.innerHTML=s.substr(r+13);} </script> <!-- Ads in mid of post: automatically -->
Notes –
1. You can use three different labels for three different ads at top, mid and bottom of the post. Must change value Label-Name with actual Label of your post.
2. Must change following three values with your three different/same ad code.
<!– Paste Ad code here: Appear at top of the post –>
<!– Paste Ad code here: Appear at mid of the post –>
<!– Paste Ad code here: Appear at bottom of the post –>
3. Add <– ads –> tag tag in each post in HTML mode.
Important: Before adding/injecting AdSense or some other ad codes in a Blogger theme, you have to Parse it otherwise it will not appear in the posts. To parse AdSense code you can use our AdSense code parser code.
Most recent version here –
References:
1. http://www.o-om.com/2013/06/menampilkan-iklan-ditengah-posting-berdasarkan-label.html
Still, have doubt leave a comment or open a topic in our forum.
That’s amazing! But are you sure that is legal and doesn’t violate TOS Adsense?
No, Not at all.
This works perfectly. Thanks for sharing
Hi, I was fed up with the issue, but your article really helpful. I injected your codes in my blog and it works perfectly, but after one day I came to know that, there is some problme with ads which is coming in the middle of the post. my ads showing with html codes like ( style=”font-family: “georgia” , “times new roman” , serif;”> ) its appearing on main screen, please help me to fix that.There is no problem with upper and bottom ads
My blog URL is paisamasti.com
Hi, I was fed up with the issue, but your article really helpful. I injected your codes in my blog and it works perfectly, but after one day I came to know that, there is some problme with ads which is coming in the middle of the post. my ads showing with html codes like ( style=”font-family: “georgia” , “times new roman” , serif;”> ) its appearing on main screen, please help me to fix that.There is no problem with upper and bottom ads
My blog URL is paisamasti
Not work.
A big thank you to you. You have made it easier for me. It worked.
Nice article but the ads in midpost is not working properly, show some html code, I will appreciate if you fix it
Hello, the location of the ads works correctly but I have the same problem of JEKKO JOY that after the first ad all the text changes and there is no way to return to the original style and size.
For me doesn’t t work I need only for middle, have you an updated code?
legit… .. Just learning new stuff
it is working but my blog page’s contents not visible after add that code. How to fix it?
Thank you very much. Worked perfectly!!!
Not work.
Hello, thanks for writing on this and it is working perfectly but I there are some issue like if you add this code to the HTML Blog Editor then your Blog Pages will not work. I am saying only about pages, not posts.
Let me know if you find any solution. I tried everything but not working.
It’s Lovely Trick Thank You For Share.
I Use This On My Site Demo -DarkMagician.Xyz
thanks for this amazing guide… it really works
Thanks it is working perfectly .
thank u
Its not working for me!
It may vary theme to theme. You must cross the div id or classes carefully.
Thank you for any other fantastic article. The place else may anyone get that kind of information in such an ideal approach of writing?
I have a presentation next week, and I am at the search for
such info.
waoo great article but the ads in midpost is not working properly, show some html code, I will appreciate if you fix it plzz help
Is something similar possible in Publii (getpublii)?
No, this way works with Blogger only.
There is so many .. how to find the right one
It was very helpful to me. Thanks a lot!