If you’re not a hardcore advertisers because you feel banners clutter up your site then I’ve got something that you might be more interested which will still net you a few bucks.これはバナー何かを詳細にはまだいくつかのドルの純が興味を持っているかもしれないがごちゃごちゃしているサイトを感じる場合は筋金入りの広告主様ではない。 Randomized banner placement!無作為化バナーを配置! That is, banners that have spots on your site, but only showing up 25%, 50%, or 75% of the time.つまり、あなたのサイトにバナーの観光スポットがあるが、わずか25 % 、 50 % 、または時間の75 %増を示している。

My main point in testing this out was to see if the reducing ad frequency would prevent banner blindness of visitors coming to two of the sites I run.このうち広告の頻度を減らす場合は、 2つの私を実行して、サイトの訪問者に来るのバナー失明を防ぐと見ていたのテストで私の主なポイント。

Some Quick Stats: いくつかの迅速な統計情報:

  • Both get at least 1000 unique hits for their daily traffic.両方のトラフィックを毎日少なくとも1000ユニークなヒットになる。
  • Site one has a top banner CTR of 1.8% and site two has 1.6% in the same place.サイトの1つは、同じ場所で1.6 %が1.8 %と2つのサイトへのバナー広告のクリック率している。
  • Sites were tested over a period of two weeks.サイトを2週間にわたってテストされた。
  • Page views per visitor for site one is 3.4 and site two’s is 3.1.サイト訪問者ごとに1つのページの閲覧3.4と2つのサイトは3.1です。
  • Both sites are information based sitesどちらのサイトでも情報ベースのサイト

All of these stats were gathered from Google Analytics.これらのすべての統計情報をGoogle Analyticsから収集された。

After Experiment Results 実験結果の後に
Click thru rates increased to 3.2% in the first case and 2.4% in case two when I had the top banner displaying 75% of the time.クリックスルー率は3.2 %に2つの事件の最初のケースと2.4 %のときには、上部のバナーを表示していた時間の75 %増加した。

Theoretical Reasoning 理論的推論
Banner blindness for visitors causes them to ignore banners when they see it in the same place too many times.ビジター用バナー失明それらが同じ場所でも何度もそれを見るのバナーを無視するようになります。 Therefore I also assuming there is a “hot spot” setting in which some sites will get the best CTR from anywhere between 40-95 percentage displays.したがって私もある"ホットスポット"は、いくつかのサイトのどこかの間に40から95パーセントが表示されますから最高のクリック率になると仮定する設定です。

The reason why I feel this worked so well for me, is because an average visitor to either site typically views about three pages.理由私はこの仕事は私にとって非常によく、感じているため、通常の3ページについての意見のいずれかのサイトには、平均訪問者。 If the typical user only viewed one or two pages, I’m sure my results would not have been so great.典型的なユーザーの場合のみ、 1つまたは2つのページは、きっと私の結果は、これまで以上に素晴らしいわけではないと見ている。 Also the higher my page views per user are, the more likely I could get away with a lower display number percentage.また、 1ユーザーあたりの私のページビューが高いほど、さらに多くのIは、下位の表示数の割合になる可能性がある可能性が高い。

You might also see variations with different designs than I have, or different banner placements.また別のデザインにばらつきが見られる場合、または別のバナーを配置している。 I would also assume that the most extreme difference in results that anyone would see is with top banners or banners in the top/body of their content.また、検索結果の中で最も極端な違いは、誰かと会うことが前提となるバナー広告やバナー広告はコンテンツのトップへ戻る/本文にしています。 Furthermore, a different kind of site (like a forum) might produce entirely different results.また、フォーラムのサイトの別の種類( )のように完全に異なる結果を生む可能性があります。 That’s why I’m going to give you the simple code I used to let you test it on your own site.だからこそ、私はあなたご自身のサイト上でテストできるように使用した簡単なコードを出すだけだよ。

HowTo Randomize Banners 手引きランダムバナー

  1. <?php
  2. //For 75% Display Chance
  3. //Create random number between 1 and 4
  4. $number = mt_rand ( 1 , 4 ) ;
  5. $remainder = $number % 4 ;
  6. //The Math:
  7. //If $number is 1 then remainder is 3 (25% of the time - Do Nothing) ( 25 % //If $number is 1 then remainder is 3 (25% of the time - Do Nothing) //If $number is 1 then remainder is 3 (25% of the time - Do Nothing)
  8. //If $number is 2 remainder is 2 (runs code below - 25%) コードを実行 //If $number is 2 remainder is 2 (runs code below - 25%)
  9. //If $number is 3 remainder is 1 (runs code below - 25%) コードを実行 //If $number is 3 remainder is 1 (runs code below - 25%)
  10. //If $number is 4 remainder is 0 (runs code below - 25%) コードを実行 //If $number is 4 remainder is 0 (runs code below - 25%)
  11. //last 3 cases add up to 75% chance of code running //last 3 cases add up to 75% chance of code running追加 //last 3 cases add up to 75% chance of code running
  12. if ( $remainder !== 3 ) { ?> if ( $remainder !== 3 ) { ?>
  13. PUT AD CODE HERE
  14. <?php } ?>
  15. <?php
  16. //For 50% Display Chance
  17. //Create random number between 1 and 2
  18. $number = mt_rand ( 1 , 2 ) ;
  19. $remainder = $number % 2 ;
  20. //The Math:
  21. //If $number is 1 then remainder is 1 (50% of the time - Do Nothing) ( 50 % //If $number is 1 then remainder is 1 (50% of the time - Do Nothing) //If $number is 1 then remainder is 1 (50% of the time - Do Nothing)
  22. //If $number is 2 then remainder is 0 (runs code below - 50%) 0 //If $number is 2 then remainder is 0 (runs code below - 50%)//If $number is 2 then remainder is 0 (runs code below - 50%) -5 //If $number is 2 then remainder is 0 (runs code below - 50%)
  23. if ( $remainder == 0 ) { ?> if ( $remainder == 0 ) { ?>
  24. PUT AD CODE HERE
  25. <?php } ?>
  26. <?php
  27. //For 25% Display Chance
  28. //Create random number between 1 and 2
  29. $number = mt_rand ( 1 , 4 ) ;
  30. $remainder = $number % 4 ;
  31. //The Math:
  32. //If $number is 4 then remainder is 0 (runs code below - 50%) 0 //If $number is 4 then remainder is 0 (runs code below - 50%)//If $number is 4 then remainder is 0 (runs code below - 50%) -5 //If $number is 4 then remainder is 0 (runs code below - 50%)
  33. if ( $remainder == 0 ) { ?> if ( $remainder == 0 ) { ?>
  34. PUT AD CODE HERE
  35. <?php } ?>

You can change the percentage by changing the equation using some simple math.あなたはいくつかの簡単な数学の方程式を使って変更することによって、割合を変更することができます。 I gave you examples for 75%, 50% and 25%.私が75 % 、 50 %および25 %の例を挙げた。 Good god, my HS math teacher was right.神グッド、私の右HS数学の教師だった。 You DO use fractions in real life.あなたが実生活で分数を使用しないでください。

Notes ノート
Bear in mind, if you don’t get much traffic to your website its going to be very hard to tell what your results are after a week even.クマ心の中で、非常に行く場合は、検索結果は1週間後にも何か言うのは難しいことをサイトに多くのトラフィックを得ることはありません。 Let it run for a while.それはしばらくの間は実行してみましょう。 Typically if your site is getting 50 visitors a day it ads up to $10 of CPC ad click revenue at the end of a good month.通常の場合、サイトのクリック単価広告のクリック収入の10ドルにはいい今月末に最大50の訪問者が1日に広告をしている。 At least in my experience.少なくとも私の経験で。 To me that’s not worth monetizing a website yet and you’re almost sure to have a hard time in seeing any kind of results from this.私にはまだ収益を上げる価値はないのと、ほぼあらゆる種類の本からの結果を見に苦労するようにしてくださいね。

Reports レポート
If you try this, give it a go and report back in the comments below.もしこのときに、試しにやって、下のコメント欄で報告する。 Be sure to include the stats of your site, what percentage you used, and what your results were like.お客様のサイトの統計情報が含まれていますしてください何を使用する割合は、検索結果がどのようなことでした。



Leave A Comment:コメントを残す:

Comments RSS Feed コメントのRSSフィード

5 - 3 = 五から三=

Custom Theme by Rob Malon | Content & Design © 2008 - Rob Malon [dot] Com. カスタムテーマロブマロン|コンテンツ&デザイン© 2008 -ロブマロン[ドット]コム。 "));
"));