How to put adsense on your wordpress post
Here I am again updating my blogging category because as much as possible i want to help other newbies out there on how to tweak their blog easily and most of their question was on how to put adsense on their wordpress blog?but dont get me wrong because i am not talking about the free blogging one which is wordpress.com im talking about the wordpress software who needs your own domain like this website, i know there’s a lot of plug ins that can we use just to put adsense on your blog but why do you have to install it if you can easily tweak your themes so that your adsense ads will be appear properly..
So how to put adsense on your blog using your themes php files? first, just go into your Appearance on your sidebarĀ admin panel then click the Editor one, then you can see the php codes of your themes and after that just locate the single.php or most of the time its title of single post then open it and you can see the code it self and all you have to do is to locate those code below that ill given
<h1><?php the_title(); ?></h1>
put your adsense code either below or after that code, if you want the adsense will show under the title of your post just put in under the code
<h1><?php the_title(); ?></h1>
your adsense code here
and if you want to see your adsense ads before the title of your post just put it after the code
your adsense code here
<h1><?php the_title(); ?></h1>
And of course you can also put at the bottom of your post just put your adsense code under the code below
</div><script type=”text/javascript”>
your adsense code here
After that just dont forget to update your code so that it will show after..thanks i hope you’ll find it useful on your blogging stuff..lol


