What the Google girl told me – Video tutorial Part 1 (with closed captions)


Post Views for Oct :
andy
I am the creator of CommentLuv Premium
andy
andy
You can get your own content published on this site as long as you have CommentLuv installed on your site.

Doing so means you get exposure to thousands and thousands of other CommentLuv users and your posts get sent out to the massive subscriber list.

Google loves this site and indexes it multiple times per day and posts always get lots of comments so you can be sure of some excellent exposure.

See the Write For Us page for more details

btw.. you can get this author box here

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

can read more about how to target sections by reading the google adsense help page here

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;
}