by DPM70
3 replies
  • SEO
  • |
If I have hoplinks or cpa offer links (whether cloaked or not) in the same blog post as an adsense ad - is that grounds for losing an Adsense account?

All opinions welcome.
#adverts #clash
  • Profile picture of the author yukon
    Banned
    I think the main thing Adsense cares about is contextual Ad competition on the same page.

    I would imagine your CPA Ad is static (doesn't change based on text/content/page-refresh).

    You can run almost any type of Ad on a self hosted site (Wordpress, etc..) then just rotate Ads (php code), so Adsense & any other Ads are never on the same page at the same time.
    {{ DiscussionBoard.errors[3171430].message }}
    • Profile picture of the author DPM70
      Originally Posted by yukon View Post

      You can run almost any type of Ad on a self hosted site (Wordpress, etc..) then just rotate Ads (php code), so Adsense & any other Ads are never on the same page at the same time.
      I like this idea. Need to look into this more. Thanks for the tip. If I dont find how to do it using php I'll be back!
      Signature
      I don't build in order to have clients. I have clients in order to build. - Ayn Rand
      {{ DiscussionBoard.errors[3171497].message }}
      • Profile picture of the author yukon
        Banned
        Originally Posted by DPM70 View Post

        I like this idea. Need to look into this more. Thanks for the tip. If I dont find how to do it using php I'll be back!
        Copy & paste this php code into your Wordpress theme & replace the existing Adsense + CPA code blocks.

        Keep the CPA Ad & Adsense Ad block the same size, so it doesn't mess up your theme (over lapping, etc...).


        Code:
        <?php
        $rand = rand(1,2);
         
        if ($rand == 1){
        ?>
         
        Adsense_Code_Here
         
        <?php
        } elseif($rand == 2){
        ?>
         
        CPA_Code_Here
         
        <?php
        }
        ?>
        This will rotate both Ads & only show a single Ad each time the page is loaded/refreshed.

        Works out to be very close to a 50/50 split long term.
        {{ DiscussionBoard.errors[3171542].message }}

Trending Topics