You might want to add Google Ad after your first post on the home page. But when you put your adsense code inside the loop, you will see that your ad will be displayed throughout the page after each post and if you put your ad code just after the loop your ad will be displayed at the very bottom of the page.
Here is the forum to put an add after the first post
<?php if (have_posts()) : while (have_posts()) :
the_post(); $postcounter++; ?>
// your loop
<?php if ($postcounter <= 1) { // you advertisement code here } ?>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
Pretty simple! Wasn’t it ? Adding an icing to cake just you change the $postcounter <= 1 to $postcounter <= 2 the if you want advertisement to be displayed both after first and second post.
Related posts:

