Looking for a WP post rotation plugin

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Sarah_Jayne
    Now with more Jayne
    • Dec 2002
    • 40077

    #1

    Looking for a WP post rotation plugin

    Is there one where certain posts can be excluded from the rotation? For example, I may have some posts that were pretty time specific and themed towards past current events. I want to rotate posts but not those. Anybody know a WP plugin that will do that?

    Thanks!
  • The Duck
    Adult Content Provider
    • May 2005
    • 18243

    #2
    I second that request however I do not require to exclude certain posts.
    Skype Horusmaia
    ICQ 41555245
    Email [email protected]

    Comment

    • naughtylaura
      Naughty Laura
      • Jan 2007
      • 1198

      #3
      I think its called oldest to newest

      http://ryowebsite.com/wp-plugins/old2new/
      Custom Butt Plugs & Kink items!

      Comment

      • ruff
        I have a plan B
        • Aug 2004
        • 5507

        #4
        The closest thing I have found is "Old Post Promoter". It just rotates posts randomly. Still might be worth something. You can find it here: http://www.blogtrafficexchange.com/wordpress-plugins/
        CryptoFeeds

        Comment

        • asianseekerz
          Confirmed User
          • Aug 2008
          • 1609

          #5
          hoping somebody could suggest which of the pluggins is the best!!!!!
          LUSTY LIFES : Dad & Daughter Wild Adventures : Naughty Wild Sister
          Contact : ICQ : 372109
          Email add: [email protected]

          Comment

          • fris
            Too lazy to set a custom title
            • Aug 2002
            • 55679

            #6
            Originally posted by Sarah_MaxCash
            Is there one where certain posts can be excluded from the rotation? For example, I may have some posts that were pretty time specific and themed towards past current events. I want to rotate posts but not those. Anybody know a WP plugin that will do that?

            Thanks!
            I would do a custom loop and exclude those posts, although their might be a plugin for this.

            Code:
            // 1,2,3,4 are post ids.
            
            <?php $args = array('orderby' => 'rand','showposts'=>5,'post__not_in'=>array(1,2,3,4));?>
            
            <?php $custom = new WP_query($args);?>
            
            <?php if ($custom->have_posts()) : ?>
            <?php global $wp_query; $wp_query->in_the_loop = true; ?>
            <?php while ($custom->have_posts()) : $custom->the_post(); ?>
            
            <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
            
            <?php endwhile; ?>
            <?php endif; ?>
            Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

            Comment

            • Sarah_Jayne
              Now with more Jayne
              • Dec 2002
              • 40077

              #7
              Yeah, you would think other people would have wanted something like it in the past.

              Comment

              Working...