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. 이 밖에 광고 빈도를 줄이는 경우에는 두 가지가 내가 운영하는 사이트의 방문자가 올 것이라고보고됐다 현수막 실명 방지 테스트에서 내 주요 가리 킵니다.

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.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. 사이트 방문자가 하나 당 사이트 페이지 조회 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.4 %에서 2에서 첫 번째 사건 때 상단 배너를 표시하는 시간의 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. 전형적인 경우 사용자는 하나 또는 두 개의 페이지, 나는 확실히하지 않았을거야 내 결과는 이미 너무 잘 보았습니다. Also the higher my page views per user are, the more likely I could get away with a lower display number percentage. 또한 사용자가 당 내 페이지 조회가 높을수록 더 멀리 더 낮은 비율을 함께 표시 번호를받을 수있다.

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
  12. 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) % - //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%) 50 //If $number is 2 then remainder is 0 (runs code below - 50%)
  23. 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%) 50 //If $number is 4 then remainder is 0 (runs code below - 50%)
  33. 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 개의 광고를 하루 방문자지고있다. 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 피드

7 Added To 3 = 7월 3일하려면 = 추가됨

Custom Theme by Rob Malon | Content & Design © 2008 - Rob Malon [dot] Com. 맞춤 테마 롭 런에 의해 | 콘텐츠 & 디자인 © 2008 - 롭 메일런 [도트] 그럼요. "));
"));