1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

[Wordpress] Rotating banner plugin

Discussion in 'WordPress' started by Ruriko, May 26, 2008.

  1. #1
    Anyone know a free rotating banner plugin that works with v2.5.1?
     
    Ruriko, May 26, 2008 IP
  2. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #2
    Im also interested in this.
     
    pipes, May 26, 2008 IP
  3. thefreebielife

    thefreebielife Peon

    Messages:
    1,202
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #3
    AdRotator, but i really don't like it. I have it on my blog currently (if you want to see what it does most of the times).
     
    thefreebielife, May 26, 2008 IP
    pipes likes this.
  4. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #4
    Thanks thefreebielife, il take a look.
     
    pipes, May 26, 2008 IP
  5. Ajucoolest

    Ajucoolest Well-Known Member

    Messages:
    616
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    128
    #5
    What types of Advertisements do you want to rotate ?

    125 banners , 468X60 half banners or 728X90 full banners ?
     
    Ajucoolest, May 26, 2008 IP
  6. devilkitty

    devilkitty Peon

    Messages:
    303
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Try WPads

    Been using it a while and works quite well

    Hope that helps
     
    devilkitty, May 26, 2008 IP
  7. Ruriko

    Ruriko Well-Known Member

    Messages:
    4,023
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    130
    #7
    468X60. Is there a way to make it work with wp supercache? cause the banner won't change when you refresh the page
     
    Ruriko, May 27, 2008 IP
  8. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #8
    Does that still get updated?
     
    pipes, May 28, 2008 IP
  9. The Smile Guy

    The Smile Guy Guest

    Messages:
    34
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I use OIOPublisher and I love it! Although it is not free it is worth it!
     
    The Smile Guy, May 28, 2008 IP
  10. devilkitty

    devilkitty Peon

    Messages:
    303
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #10
    No idea m8 (Although probably not), I use for it a couple of blogs and its still working fine.

    Cheers
    DK
     
    devilkitty, May 29, 2008 IP
    pipes likes this.
  11. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #11
    Thanks devilkitty, il give it a try.
     
    pipes, May 29, 2008 IP
  12. aimtowin

    aimtowin Active Member

    Messages:
    143
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    58
    #12
    WPAds seems to work for me although it doesn't always rotate two ads evenly. Nice and simple plugin if you don't need something fancy.
     
    aimtowin, Jun 6, 2008 IP
  13. scuba5794

    scuba5794 Active Member

    Messages:
    725
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    73
    #13
    i love wpads my personal favorite
     
    scuba5794, Jun 6, 2008 IP
  14. MeetHere

    MeetHere Prominent Member

    Messages:
    15,399
    Likes Received:
    994
    Best Answers:
    0
    Trophy Points:
    330
    #14
    rotatee.com is my favorite :)
     
    MeetHere, Jun 6, 2008 IP
  15. Cartman

    Cartman Active Member

    Messages:
    354
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    88
    #15
    I just use a few lines of PHP code to accomplish the same thing.. If none of your plugins work, PM me and I'll post the code.
     
    Cartman, Jun 7, 2008 IP
  16. MeetHere

    MeetHere Prominent Member

    Messages:
    15,399
    Likes Received:
    994
    Best Answers:
    0
    Trophy Points:
    330
    #16
    Please post it, I want. :)
     
    MeetHere, Jun 7, 2008 IP
  17. adbox

    adbox Well-Known Member

    Messages:
    906
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    155
    Digital Goods:
    1
    #17
    
    <CENTER>
    <?php
      $banner[0] = '<iframe src="http://rcm.amazon.com/e/cm?t=jakolorbbookc-20&o=1&p=48&l=ur1&category=books&banner=0835KA0M3CYPVY7X8MR2&f=ifr" width="728" height="90" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"></iframe>';
    
     $banner[1] = '<iframe src="http://rcm.amazon.com/e/cm?t=jakolorbbookc-20&o=1&p=26&l=ur1&category=books&banner=0RCQ1NEMQDJP2TWJBJG2&f=ifr" width="468" height="60" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"></iframe>';
    
     $banner[2] = '<iframe src="http://rcm.amazon.com/e/cm?t=jakolorbbookc-20&o=1&p=48&l=ur1&category=books&banner=1WV938XZP3V21MG4E2R2&f=ifr" width="728" height="90" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"></iframe>';
    
     $rand_keys = array_rand($banner);
    
     echo  $banner[$rand_keys];
    ?>
    </CENTER>
    
    Code (markup):
     
    adbox, Sep 9, 2010 IP
  18. bluecode

    bluecode Peon

    Messages:
    34
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #18
    many option suggested. thanks for share
     
    bluecode, Sep 12, 2010 IP
  19. resshin

    resshin Member

    Messages:
    35
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #19
    so which one is the best for WP 3.0.1 ? I want to use ads rotator too..
     
    resshin, Sep 13, 2010 IP
  20. ProMovieBlogger

    ProMovieBlogger Active Member

    Messages:
    103
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    66
    #20
    How is that placed in the header php file?
     
    ProMovieBlogger, Sep 15, 2010 IP