One of my clients is using this theme: http://www.wpthemesfree.com/view.php?theme_id=409 How do we add one line of google ads to the top of each post? There's already 2 skyscraper ads on the sidebar. How does he add to the main post?
the post pages are controlled by the single.php file. You can add adsense above the post and inside it in this template. The index.php or home.php template will control your home page so you need to edit that if you want adsense in the main content area of the home page.
You need to add below given in index.php file under entry section. <?php if($postcount<4) { include (TEMPLATEPATH . "/adsense-links.php"); } ?> Code (markup): And make one file called adsense-links.php using your google code for one linder ad and upload it. DON.