Hello everyone i have a quick question can anyone show me how to insert adsense code in the top left/right corner of posts without the use of any plugin. Where exactly i have to insert the code an in which file if the template. One more thing I show full posts in my home page and is there any way not to show ads of the post in the home page, i just want to show them in the post only so that adsense TOS stays good. Here is the example what i want:
Regarding your 1st question. You need to add below given code where you want that image in your post. <div style="float:left; padding:0 10px 10px 0;"><img src="http://www.yourdomain.com/images/yourimage.jpg" alt="" width="200" height="150" /></div> Code (markup): Regarding your 2nd question. You need t add below given code in your index.php (template main index file) just below <div class="entry">. <?php if($postcount<4) { include (TEMPLATEPATH . "/adsense300x250.php"); } ?> Code (markup): and add one file adsense300x250.php with below given code <div style="float:right;width:300px;height:250px;margin:10px;"> Your Google Adsense Code </div> Code (markup): DON.
Thank you. I want to show adsense in place of that image can you please tell how to do so. I'll not add the image so please kindly tell where to insert the adsense code.
Already answered your 2nd question too which is related to your querry. Using that you can add adsense to that place (image place). DON.