Code #28: Integrate Adsense

Hello guys, and wel­come to the twenty eighth day of “31 Days of Cod­ing”. Today we’re going to show you how to inte­grate Adsense in your posts. Go to your functions.php, and put the fol­low­ing 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 fol­low­ing 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.

Leave a Reply