Adding Google Adsense to your Blog’s post is easy. First, you have to add the following code to your theme’s functions.php file.
<?php
function showAds() {
return '<script type="text/javascript"><!--
google_ad_client = "pub-2102064382433354";
google_ad_slot = "5772977330";
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('myadsense', 'showAds');
?>
Saved the functions.php file and upload it. Now you can embed an Adsense unit into your posts easily by pasting the following code in the editor, in html mode:
[myadsense]

