I have received a lot of feedback from readers saying that they would like to know what the Google girl told me on our consultation call where we went over every page of this site to see what can be done to increase adsense earnings.
There was so much that was done and so much to tell about how I did it using edits to my themes functions.php file that I have decided to make a series of video tutorials covering each thing we discussed and how I implemented it on this site.
Here is part 1 that deals with how to target your post content by using google_ad_section_start and google_ad_section_end
[youtube]http://www.youtube.com/watch?v=teWTtr4fp0c[/youtube]
You
here’s the code from the video
/** adsense blocks */ add_filter('the_content','my_adsense_target'); function my_adsense_target($content){ if(is_singular()){ $content = '<!-- google_ad_section_start -->'.$content.'<!-- google_ad_section_end -->'; } return $content; }