We can easily embed Google Adsense Ads on wordpress posts by editing the function.php and insert below code:
function showads() {
return '<script type="text/javascript"><!--
google_ad_client = "pub-1234567890";
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');

*Remember to change your own adsense pub id…
[adsense]
To use it on your post is very simple, switch to “Text” mode, type “adsense” ( replace quote with brackets ), and it will display the Google Adsense ads on your posts. I found that u can only put max. 2 adsense ads in single post.
Of course, if u dare not to modify the function.php file, there are plenty of wordpress adsense plugins available.
-via wprecipes–