Adding Google Adsense to your blog’s post is easy. No need to download and add another plugin to your WordPress installation. Just follow these easy instructions! First, you have to add the following code to your theme’s functions.php file.
1 2 3 4 5 6 7 8 9 10 11 12 |
<?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="https://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:
1 |
[myadsense] |
This is a nice piece of code. No need for a plugin! Great! I’m gonna add it to my blog right now!
Thanks! nice info…
This awesome script.. Great! thanks Richard
Thanks guys!
nice tips