The following code will allow you Add google AdSense code inside post using wordpress Shortcode which display a 468×60 AdSense unit wherever you place the [adsense] shortcode
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | function showads() { return '<script type= "text/javascript" ><!-- google_ad_client = "pub-YOUR_PUB_ID_HERE" ; google_ad_slot = "YOUR_ADD_SLOT_HERE" ; google_ad_width = 468; google_ad_height = 60; //--> </script> <script type= "text/javascript" > </script> '; } add_shortcode( 'adsense' , 'showads' ); |
Note: Be sure to fill in your publisher ID and Ad Slot info. You can also use a different size ad by changing the width and height values.
Source: WP Recipes