Code #28: Integrate Adsense
Hello guys, and welcome to the twenty eighth day of “31 Days of Coding”. Today we’re going to show you how to integrate Adsense in your posts. Go to your functions.php, and put the following code:
function showads() {
return '<script type="text/javascript"><!--
google_ad_client = "pub-3637220125174754";
google_ad_slot = "4668915978";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
';
}
add_shortcode('adsense', 'showads');
Then, after you make a post, put the following code in your posts:
[adsense]
And you’re all set. Make sure you replace the adsense code in the fuctions.php file with your own Adsense code.