Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Adsense / PPC / SEO Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 05-31-2009, 11:25 PM   #1
HyperActive Warrior
War Room Member
 
Adam Jackson's Avatar
 
Join Date: Dec 2005
Location: , , USA.
Posts: 482
Thanks: 61
Thanked 23 Times in 22 Posts
Default Best Adsense plugin for Wordpress

I'm having a 400+ page website redesigned with wordpress. What is the best way to implement adsense on all the pages? Is there a plugin that will place adsense on all the pages?

Input appreciated...

Adam
Adam Jackson is offline   Reply With Quote
Old 05-31-2009, 11:44 PM   #2
Advanced Warrior
War Room Member
 
Join Date: Dec 2005
Location: , , USA.
Posts: 785
Thanks: 1
Thanked 3 Times in 3 Posts
Default Re: Best Adsense plugin for Wordpress

I don't use any of the available plugins, but you will find plenty in the plugins directory. Just pick one of the highly rated ones.

I find it best to just edit the single.php, index.php, header.php, and/or single.php page and put the code in myself. You can do it right within wordpress or just use notepad and an ftp program. I don't trust a lot of the plugins since they usually have leaks in them.

Make sure you don't put the adsense just below the title of the article, as this is not really allowed. Insert the code after the "content" line.

I wrote a small bit of code in php to insert the adsense 300 characters deep into the post so it goes a few lines down from the title. It also looks nicer being embedded into the post rather than on the side or bottom.
rob6188 is offline   Reply With Quote
Old 05-31-2009, 11:48 PM   #3
Watching you...
War Room Member
 
Istvan Horvath's Avatar
 
Join Date: Dec 2008
Location: Waterdown, Ontario, Canada
Posts: 5,963
Blog Entries: 2
Thanks: 1,574
Thanked 2,712 Times in 1,651 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Istvan Horvath
Default Re: Best Adsense plugin for Wordpress

Quote:
Originally Posted by rob6188 View Post
I wrote a small bit of code in php to insert the adsense 300 characters deep into the post so it goes a few lines down from the title. It also looks nicer being embedded into the post rather than on the side or bottom.
I would be interested in that "bit of code" - is it available anywhere?
(because I don't use plugins either)

In the first half of the year we are supposed to work for the taxman. I think that's a mistake.
Help me to get rid of the taxman ASAP - thanks! (You, too, should make less mistakes!)


Istvan Horvath is offline   Reply With Quote
Old 06-01-2009, 12:02 AM   #4
Advanced Warrior
War Room Member
 
Join Date: Dec 2005
Location: , , USA.
Posts: 785
Thanks: 1
Thanked 3 Times in 3 Posts
Default Re: Best Adsense plugin for Wordpress

Quote:
Originally Posted by The Pension Guy View Post
I would be interested in that "bit of code" - is it available anywhere?
(because I don't use plugins either)
It's so simple in php, here it is. Just replace <? the_content ?> line with this code.

$code = 'Your adsense code here';
$text = get_the_content();
$text = substr_replace($text, $code, 300,0); echo $text;

The code I actually use does a little more by adjusting for the length of the content, adding some white space around the adsense, and some other things I need. But the above code should work fine as is.

Last edited by rob6188; 06-01-2009 at 12:17 AM. Reason: make the code clearer
rob6188 is offline   Reply With Quote
Old 06-01-2009, 12:19 AM   #5
Watching you...
War Room Member
 
Istvan Horvath's Avatar
 
Join Date: Dec 2008
Location: Waterdown, Ontario, Canada
Posts: 5,963
Blog Entries: 2
Thanks: 1,574
Thanked 2,712 Times in 1,651 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Skype™ to Istvan Horvath
Default Re: Best Adsense plugin for Wordpress

Thank you very much!
Yes, I see now (I can read PHP but can't write one single line of it...)

Thanks again and have a nice evening.

In the first half of the year we are supposed to work for the taxman. I think that's a mistake.
Help me to get rid of the taxman ASAP - thanks! (You, too, should make less mistakes!)


Istvan Horvath is offline   Reply With Quote
Old 06-01-2009, 01:17 AM   #6
Active Warrior
 
flattop's Avatar
 
Join Date: May 2008
Location: NW Indiana
Posts: 36
Thanks: 0
Thanked 8 Times in 8 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Best Adsense plugin for Wordpress

Adam,

I would look up adsense in the wordpress plugin portion of the site, and pick the highest rated ones. You will prolly get code you can stick in the sidebar of the site that will show up on every page, but as far as posting in every post, you will probably have to insert the code yourself on every post. Don't forget to keep in mind the Google TOS regarding how many ads you can have per page.

Hope that helps,
To Your Success,
Clint Anderson

flattop is offline   Reply With Quote
Old 06-01-2009, 11:26 AM   #7
jigsaw2order.com
War Room Member
 
jigsawguy's Avatar
 
Join Date: Mar 2009
Location: Thailand
Posts: 181
Thanks: 17
Thanked 20 Times in 19 Posts
Default Re: Best Adsense plugin for Wordpress

I've just setup adsense on a WP blog using plugins and actually use two that work really well together. I use Advertising Manager and Whydowork Adsense. I probably don't need to use two separate plugins but it was the easiest way for me to do what I wanted.

They are both really easy to implement for both sidebar and inpost adsense blocks.

Quote:
rob6188
I don't trust a lot of the plugins since they usually have leaks in them.
What do you mean by leaks? There does not seem to be any extra links or anything that would distract a visitor.

Easy to use Online Banner Maker
Make great looking Banners with our Free Banner Maker site.
jigsawguy is offline   Reply With Quote
Old 06-01-2009, 01:54 PM   #8
Advanced Warrior
War Room Member
 
Join Date: Dec 2005
Location: , , USA.
Posts: 785
Thanks: 1
Thanked 3 Times in 3 Posts
Default Re: Best Adsense plugin for Wordpress

Quote:
Originally Posted by jigsawguy View Post
What do you mean by leaks? There does not seem to be any extra links or anything that would distract a visitor.
Plugins that pull content from other sources will and should have leaks/links to the original source. Some plugins will randomly put links in 1/3 of the posts that they affect in addition to the source links.

I should rephrase my previous comment to say "Some plugins have leaks" and not "most". Most of the plugins I found at wordpress are pretty clean. But I've only used a dozen or so in the past.
rob6188 is offline   Reply With Quote
Old 06-01-2009, 02:47 PM   #9
HyperActive Warrior
War Room Member
 
Join Date: Nov 2007
Location: Writers heaven
Posts: 292
Thanks: 2
Thanked 30 Times in 12 Posts
Default Re: Best Adsense plugin for Wordpress

there are many adsense plugins.. use all i one yahoo and adsense plugin.. it gives all th eoption...
its the best out of all

anuj291 is offline   Reply With Quote
Old 06-01-2009, 11:31 PM   #10
Mage
War Room Member
 
Greg Jacobs's Avatar
 
Join Date: May 2009
Location: Chiang Mai
Posts: 484
Thanks: 20
Thanked 208 Times in 77 Posts
Social Networking View Member's Twitter Profile 
Default Re: Best Adsense plugin for Wordpress

this is the best one I found hands down after testing about 6 of them, including the "top ones in the plugin directory"
WhyDoWork Adsense Plugin

After you use it you will see why.

Greg Jacobs is offline   Reply With Quote
Old 06-02-2009, 10:34 PM   #11
HyperActive Warrior
War Room Member
 
Adam Jackson's Avatar
 
Join Date: Dec 2005
Location: , , USA.
Posts: 482
Thanks: 61
Thanked 23 Times in 22 Posts
Default Re: Best Adsense plugin for Wordpress

Thanks everyone...truly appreciate the advice.

Adam
Adam Jackson is offline   Reply With Quote
Old 06-03-2009, 02:10 PM   #12
Warrior Member
 
Join Date: Sep 2008
Location: Memphis
Posts: 23
Blog Entries: 2
Thanks: 6
Thanked 1 Time in 1 Post
Social Networking View Member's Myspace Profile  View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Contact Info
Send a message via Yahoo to rockgold Send a message via Skype™ to rockgold
Default Re: Best Adsense plugin for Wordpress

I looked on yahoo for the plugin and couldn't find it. do you know wherre to look?

Rocky McDaniel is an internet marketer living in Memphis. To learn about his amazing musical products and valuable teaching tools click here http://inspiringmomentum.com/rockymcdaniel


rockgold is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Adsense / PPC / SEO Discussion Forum

Tags
adsense, plugin

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 10:49 AM.