any wordress plugin that does this....

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DVTimes
    xxx
    • Jun 2003
    • 31650

    #1

    any wordress plugin that does this....

    puts a radom banner between posts.
    XXX
  • stickyfingerz
    Doin fine
    • Oct 2005
    • 24984

    #2
    bunch of them actually.

    Comment

    • DVTimes
      xxx
      • Jun 2003
      • 31650

      #3
      which is the best and can you give me a link to them please.

      thank you.
      XXX

      Comment

      • TheDA
        Confirmed User
        • May 2006
        • 4665

        #4
        Originally posted by allanuk
        puts a radom banner between posts.
        yes, there is.
        Sharleen Spiteri - 1989 - In The Ass

        Comment

        • DVTimes
          xxx
          • Jun 2003
          • 31650

          #5
          Originally posted by TheDA
          yes, there is.
          cool

          any links to them please.
          XXX

          Comment

          • TheDA
            Confirmed User
            • May 2006
            • 4665

            #6
            Originally posted by allanuk
            cool

            any links to them please.
            sorry I can't post my answer I don't have enough letters.
            Sharleen Spiteri - 1989 - In The Ass

            Comment

            • Lace
              Too lazy to set a custom title
              • Mar 2004
              • 16116

              #7
              I'm pretty sure you can just run WPAds and insert it into your template.
              Your Paysite Partner
              Strength In Numbers!
              StickyDollars | RadicalCash | KennysPennies | HomegrownCash

              Comment

              • Jayvis
                Confirmed User
                • Nov 2005
                • 5430

                #8
                http://www.maxblogpress.com/plugins/mba/

                something like this?

                Comment

                • awxm
                  Confirmed User
                  • Aug 2009
                  • 819

                  #9
                  I tested a few last week and this one was my favourite.

                  http://www.datafeedr.com/random-ads-plugin/
                  .

                  Comment

                  • DVTimes
                    xxx
                    • Jun 2003
                    • 31650

                    #10
                    thank you all
                    XXX

                    Comment

                    • whiskey dick
                      Confirmed User
                      • Nov 2008
                      • 106

                      #11
                      I use something like this
                      Code:
                      <?php
                      $bannerAd[1] = 'banner ad code';
                      $bannerAd[2] = 'banner ad code';
                      $adCount = count($bannerAd);
                      $randomAdNumber = mt_rand(1, $adCount);
                      echo $bannerAd[$randomAdNumber];
                      ?>

                      Comment

                      • Horny Dude
                        Earn enough to buy coffee
                        • May 2002
                        • 4913

                        #12
                        Originally posted by FruitPanda
                        I tested a few last week and this one was my favourite.

                        http://www.datafeedr.com/random-ads-plugin/
                        Thanks for this one!

                        Comment

                        • fris
                          I have to go potty
                          • Aug 2002
                          • 55708

                          #13
                          http://meandmymac.net/plugins/adrotate/

                          I dont like to spam a banner after every post, I like to put every three posts

                          this will show a random banner using zone 1 with adrotate

                          Code:
                          <?php if (have_posts()) : ?>
                           
                          <?php $count = 0; ?>
                           
                          <?php while (have_posts()) : the_post(); ?>
                           
                          <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
                          <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
                          <small><?php the_time('F jS, Y') ?></small>
                           
                          <div class="entry">
                          <?php the_content('Read the rest of this entry &raquo;'); ?>
                          </div>
                           
                          <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
                          </div>
                           
                          <?php if(++$counter % 3 == 0) : ?>
                          
                          <?php echo adrotate_banner('1'); ?>
                          
                          <?php endif; ?>
                           
                          <?php endwhile; ?>
                          <?php endif; ?>
                          hope this helps
                          Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                          My Latest Theme

                          Comment

                          Working...