Hello Friends....
Today I have trick related to blogging. Some college friends asked me how to add ads between post without adding manually. So this post is for all who wanna know about it....
Follow some steps:
1. First Log in to your blogger account and go to dashboard
After that go to Layout >> Edit HTML
2. Check "Expand Widget Templates" and find this
<b:if cond="data:post.includeAd">
<data:adend>
<data:adcode>
<data:adstart>
</data:adstart>
</data:adcode>
</data:adend>
</b:if>
3. Now in 3rd step replace above code with this below code.
<b:if cond="data:blog.pageType != "item"">
<b:if cond="data:post.includeAd">
<data:adend> <data:adcode>
<data:adstart>
</data:adstart>
</data:adcode>
</data:adend>
</b:if>
</b:if>
4. Now find tag. Paste below code after this tag.
<b:if cond="data:blog.pageType == "item"">
<b:if cond="data:post.includeAd">
<data:adend>
<data:adcode>
<data:adstart>
</data:adstart>
</data:adcode>
</data:adend>
</b:if>
</b:if>
5. Its done now....