Is there a Wordpress plugin that shuffles your posts?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Highest Def
    In the Cave of Gold
    • Jun 2010
    • 660

    #1

    Is there a Wordpress plugin that shuffles your posts?

    I have searched high and low and keep finding the same 'random posts' widgets. I want to just shuffle every post and eliminate dates all together. It's a Wordpress tube site and every few days I add 20 or 30 clips from a new sponsor, but I don't want the videos clumped together by site like that so I have been adding them with my own random dates, but I'd rather just add them all and have Wordpress do the randomizing.
  • TeenSluts
    Confirmed User
    • Mar 2006
    • 1966

    #2
    sounds like a great idea, wouldnt mind testing something like that out.

    Comment

    • Frasier
      Confirmed User
      • Jan 2010
      • 377

      #3
      removing the dates is something best done by hand, there are a couple plugin's out there that claim they can do it, but it really depends on your theme if they are successful or not.

      A quick google on 'remove wp date/time' should give you some pretty step by step directions on how to edit the php loop to remove them. I was able to do this, so I'm sure you can too

      There is a plugin called 'oldest to newest' that does exactly what it claims to do, but there is no randomization in it.

      If you find a random post updater, let us know
      ICQ 452 one six 7 five 41

      Comment

      • Highest Def
        In the Cave of Gold
        • Jun 2010
        • 660

        #4
        Originally posted by Frasier
        removing the dates is something best done by hand, there are a couple plugin's out there that claim they can do it, but it really depends on your theme if they are successful or not.

        A quick google on 'remove wp date/time' should give you some pretty step by step directions on how to edit the php loop to remove them. I was able to do this, so I'm sure you can too

        There is a plugin called 'oldest to newest' that does exactly what it claims to do, but there is no randomization in it.

        If you find a random post updater, let us know
        Yeah, I already removed them from the loop so it doesn't display the dates anywhere, but it still shows the posts in the order I created them. I want the display to be totally random since tonight I may add 20 Asian videos, and tomorrow I'll add 20 lesbian videos etc.

        Comment

        • Frasier
          Confirmed User
          • Jan 2010
          • 377

          #5
          google is your friend

          http://mr.hokya.com/post-randomizer/

          how about a review on this when you try it
          ICQ 452 one six 7 five 41

          Comment

          • harvey
            Confirmed User
            • Jul 2001
            • 9266

            #6
            not sure what do you mean by shuffle, I take you mean random. If so, open your index.php, look for the loop and add something like this:

            Code:
             
              
             <?php
             $rand_posts = get_posts('numberposts=10&orderby=rand');
             foreach( $rand_posts as $post ) :
             ?>
                <div class="post">
            <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
            <?php the_content(); ?>
            </div>
             <?php endforeach; ?>
            This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth

            Comment

            • Highest Def
              In the Cave of Gold
              • Jun 2010
              • 660

              #7
              Originally posted by Frasier
              google is your friend

              http://mr.hokya.com/post-randomizer/

              how about a review on this when you try it
              Can't get it to work. Says it's tested up to 2.9 and I just updated the site to 3.1
              It also could be something with my theme but the docs on that plugin are non-existent.

              Comment

              • woj
                <&(©¿©)&>
                • Jul 2002
                • 47882

                #8
                shouldn't be too hard to write something like that, if you are looking to invest a few bucks for this technology, hit me up icq: 33375924
                Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
                Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
                Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager

                Comment

                • icymelon
                  Confirmed User
                  • Dec 2007
                  • 3220

                  #9
                  RYO Oldest To Newest
                  http://ryowebsite.com/?cat=11
                  Network Of Adult Blogs With Hardlink Rentals Available

                  Comment

                  • Ecchi22
                    Too lazy to set a custom title
                    • Nov 2005
                    • 10012

                    #10
                    http://www.danielesalamina.it/advanced-random-post

                    Comment

                    • Kram
                      Confirmed User
                      • Feb 2007
                      • 666

                      #11
                      I use this one Lazy Blog

                      Comment

                      • tonyparra
                        Confirmed User
                        • Jul 2008
                        • 4568

                        #12
                        Originally posted by harvey
                        not sure what do you mean by shuffle, I take you mean random. If so, open your index.php, look for the loop and add something like this:

                        Code:
                         
                          
                         <?php
                         $rand_posts = get_posts('numberposts=10&orderby=rand');
                         foreach( $rand_posts as $post ) :
                         ?>
                            <div class="post">
                        <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                        <?php the_content(); ?>
                        </div>
                         <?php endforeach; ?>
                        I would try this one first personally

                        High Performance Vps $10 Linode
                        Manage your Digital Ocean, Linode, or Favorite Cloud Server. Simple, fast, and secure Server Pilot

                        Comment

                        • HowlingWulf
                          Confirmed User
                          • Nov 2001
                          • 1662

                          #13
                          I've been using
                          http://www.dagondesign.com/articles/...for-wordpress/
                          for a long time now. Works great.
                          WP Porn directory/review theme Maddos $35.

                          webmaster AT howling-wulf.com

                          Comment

                          • ottopottomouse
                            She is ugly, bad luck.
                            • Jan 2010
                            • 13177

                            #14
                            Lots of usefulness. Just marking the thread so I can find it again.
                            ↑ see post ↑
                            13101

                            Comment

                            • Highest Def
                              In the Cave of Gold
                              • Jun 2010
                              • 660

                              #15
                              Originally posted by icymelon
                              RYO Oldest To Newest
                              http://ryowebsite.com/?cat=11
                              Uhh, No

                              Originally posted by woj
                              shouldn't be too hard to write something like that, if you are looking to invest a few bucks for this technology, hit me up icq: 33375924
                              Looks like I may need to. Seems like it should be so easy though.

                              Not quite. This is really just a glorified widget.

                              Originally posted by Kram
                              I use this one Lazy Blog
                              No idea what this is, but not a chance in Detroit I'm downloading it.

                              Originally posted by HowlingWulf
                              I've been using
                              http://www.dagondesign.com/articles/...for-wordpress/
                              for a long time now. Works great.
                              Closer, but still not really what I'm looking for.

                              Originally posted by ottopottomouse
                              Lots of usefulness. Just marking the thread so I can find it again.
                              Sad aint it

                              Comment

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

                                #16
                                i use query_posts for tube style layouts, where i have random posts 4-8 of them, then the regular posts.
                                Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                Comment

                                • tonyparra
                                  Confirmed User
                                  • Jul 2008
                                  • 4568

                                  #17
                                  bump, looking for:

                                  1. the plugin, or
                                  2. the code, or
                                  3. the price, of what you would charge to make it happen

                                  High Performance Vps $10 Linode
                                  Manage your Digital Ocean, Linode, or Favorite Cloud Server. Simple, fast, and secure Server Pilot

                                  Comment

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

                                    #18
                                    Originally posted by tonyparra
                                    I would try this one first personally
                                    yes i use that on a tube theme, i have a row for featured videos, latest, then random.
                                    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                    Comment

                                    • cjhmdm
                                      Confirmed User
                                      • Jun 2009
                                      • 472

                                      #19
                                      Just modify the loop for your specific needs/wants. That's pretty much all any plugin will do anyway. And at the end of the day it'd be better for you to learn how to do these types of things yourself.

                                      Here's a good place to get started: http://codex.wordpress.org
                                      More specifically: http://codex.wordpress.org/Template_Tags/get_posts

                                      Comment

                                      • trannysphere
                                        Confirmed User
                                        • Jul 2010
                                        • 519

                                        #20
                                        sorry to bump this thread.. did you ever solved your problem? i might be looking for this one soon enough. will be building WP tubes and still need info.. up for you man!

                                        DESIGN IS FILTHY DESIGN DEALS + ICQ:624499299 + designs {at} designisfilthy.com

                                        $8 BANNER DESIGN | $299 for 50 BANNERS | $449 for 100 BANNERS
                                        $15 DOLLAR GALLERY DESIGN | $129 for 10 GALLERIES | $199 for 20 GALLERIES

                                        Comment

                                        • jimmy-3-way
                                          Confirmed User
                                          • Jun 2001
                                          • 3861

                                          #21
                                          http://wordpress.org/extend/plugins/random-redirect/

                                          You're welcome.
                                          Make money offa that Asian honey - www.eroticmp.com.

                                          Comment

                                          • Brujah
                                            Beer Money Baron
                                            • Jan 2001
                                            • 22157

                                            #22
                                            A good post randomizer could be set to shuffle the existing datetimes once per x minutes/hours.

                                            example:
                                            get id,datetime from the db table
                                            shuffle the datetimes
                                            update each id with the new datetime

                                            Comment

                                            • garce
                                              Confirmed User
                                              • Oct 2001
                                              • 7103

                                              #23
                                              Originally posted by Brujah
                                              A good post randomizer could be set to shuffle the existing datetimes once per x minutes/hours.

                                              example:
                                              get id,datetime from the db table
                                              shuffle the datetimes
                                              update each id with the new datetime
                                              You'd have to make sure you weren't using a calendar or archives by date.

                                              Comment

                                              • GrouchyAdmin
                                                Now choke yourself!
                                                • Apr 2006
                                                • 12085

                                                #24
                                                ORDER BY RAND()

                                                Enjoy even more overhead than turdpress normally has.

                                                Comment

                                                • Brujah
                                                  Beer Money Baron
                                                  • Jan 2001
                                                  • 22157

                                                  #25
                                                  Originally posted by garce
                                                  You'd have to make sure you weren't using a calendar or archives by date.
                                                  Why? in this example, the dates are meaningless and only being used to show content on the pages in a different order. In what case would you still want the Archives to show the original order?

                                                  Comment

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

                                                    #26
                                                    Grouchy sure hates wp
                                                    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                                    Comment

                                                    • GrouchyAdmin
                                                      Now choke yourself!
                                                      • Apr 2006
                                                      • 12085

                                                      #27
                                                      Originally posted by fris
                                                      Grouchy sure hates wp
                                                      Yes, yes I do.

                                                      As does anyone who has to manage computers, not just skin them and go away - no offense, but WP is probably the biggest pile of shit written in PHP, and I'm including absolutely everything written in PHP, ever. ;)

                                                      Comment

                                                      • Brujah
                                                        Beer Money Baron
                                                        • Jan 2001
                                                        • 22157

                                                        #28
                                                        Originally posted by GrouchyAdmin
                                                        Yes, yes I do.

                                                        As does anyone who has to manage computers, not just skin them and go away - no offense, but WP is probably the biggest pile of shit written in PHP, and I'm including absolutely everything written in PHP, ever. ;)
                                                        Obviously you've never used phpNuke

                                                        Comment

                                                        • GrouchyAdmin
                                                          Now choke yourself!
                                                          • Apr 2006
                                                          • 12085

                                                          #29
                                                          Originally posted by Brujah
                                                          Obviously you've never used phpNuke
                                                          Oh holy god. I forgot about that. Can you believe it? I was, however, including phpBB2, and OpenBB (no longer exists).

                                                          Comment

                                                          • JosephFM
                                                            Confirmed User
                                                            • Feb 2010
                                                            • 1190

                                                            #30
                                                            Here's two of them.

                                                            http://www.yakupgovler.com/advanced-random-posts.html

                                                            http://www.danielesalamina.it/advanced-random-post (Page in Italian but files are in English)

                                                            Comment

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

                                                              #31
                                                              Originally posted by GrouchyAdmin
                                                              Yes, yes I do.

                                                              As does anyone who has to manage computers, not just skin them and go away - no offense, but WP is probably the biggest pile of shit written in PHP, and I'm including absolutely everything written in PHP, ever. ;)
                                                              yes that may be it, but a good portion of high traffic websites use wordpress
                                                              Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                                              Comment

                                                              • GrouchyAdmin
                                                                Now choke yourself!
                                                                • Apr 2006
                                                                • 12085

                                                                #32
                                                                Originally posted by fris
                                                                yes that may be it, but a good portion of high traffic websites use wordpress
                                                                A good portion of high traffic websites also use Tomcat, but I'd prefer not to manage them, either.

                                                                Comment

                                                                • Angry Jew Cat - Banned for Life
                                                                  (felis madjewicus)
                                                                  • Jul 2006
                                                                  • 20368

                                                                  #33
                                                                  Originally posted by harvey
                                                                  not sure what do you mean by shuffle, I take you mean random. If so, open your index.php, look for the loop and add something like this:

                                                                  Code:
                                                                   
                                                                    
                                                                   <?php
                                                                   $rand_posts = get_posts('numberposts=10&orderby=rand');
                                                                   foreach( $rand_posts as $post ) :
                                                                   ?>
                                                                      <div class="post">
                                                                  <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                                                                  <?php the_content(); ?>
                                                                  </div>
                                                                   <?php endforeach; ?>
                                                                  That's all i do, edit it right into the loop. Works good for throwing up random past articles in an external loop too.

                                                                  Comment

                                                                  • stocktrader23
                                                                    Let's do some business.
                                                                    • Jan 2003
                                                                    • 18781

                                                                    #34
                                                                    Originally posted by GrouchyAdmin
                                                                    A good portion of high traffic websites also use Tomcat, but I'd prefer not to manage them, either.
                                                                    If you ever create something that makes site building / management as easy as WP plus has all of the benefits I'll be the first to sign up. Until then, manage away.


                                                                    Hands Free Adult - Join Once, Earn For Life

                                                                    "I try to make a habit of bouncing my eyes up to the face of a beautiful woman, and often repeat “not mine” in my head or even verbally. She’s not mine. God has her set aside. She’s not mine. She’s His little girl, and she needs me to fight for her by keeping my eyes where they should be."

                                                                    Comment

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

                                                                      #35
                                                                      Originally posted by Highest Def
                                                                      I have searched high and low and keep finding the same 'random posts' widgets. I want to just shuffle every post and eliminate dates all together. It's a Wordpress tube site and every few days I add 20 or 30 clips from a new sponsor, but I don't want the videos clumped together by site like that so I have been adding them with my own random dates, but I'd rather just add them all and have Wordpress do the randomizing.
                                                                      you could do a random post with cookies, so that user never gets the same random post.
                                                                      Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                                                      Comment

                                                                      • jimmy-3-way
                                                                        Confirmed User
                                                                        • Jun 2001
                                                                        • 3861

                                                                        #36
                                                                        Originally posted by GrouchyAdmin
                                                                        Yes, yes I do.

                                                                        As does anyone who has to manage computers, not just skin them and go away - no offense, but WP is probably the biggest pile of shit written in PHP, and I'm including absolutely everything written in PHP, ever. ;)
                                                                        I'm curious what is so bad about WP - would you be so kind as to name a few things?
                                                                        Make money offa that Asian honey - www.eroticmp.com.

                                                                        Comment

                                                                        • harvey
                                                                          Confirmed User
                                                                          • Jul 2001
                                                                          • 9266

                                                                          #37
                                                                          Grouchy, I won't argue on the technical part, since I don't know, but when I see these retarded users, I assume they might have 1 or 2 coders that know a little, and since they're using WP, me and the average Joe will trust that crappy pile of shit known as WP. There might be better scripts, but if it's good for the fucking NASA, Yahoo, CNN, FOX, flickr and Reuters just to name a few, then I'm pretty sure it will be bananas for a small cat like me Oh, and the price ain't too shabby

                                                                          The above being said, I'd be very interested in knowing what would you recommend as an alternative and why do you think WP is that bad (please don't say security, let's be serious here)
                                                                          This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth

                                                                          Comment

                                                                          • Jdoughs
                                                                            Confirmed User
                                                                            • Mar 2004
                                                                            • 5794

                                                                            #38
                                                                            I just use orderby=rand and WPCACHE to set the time limit on cache.


                                                                            So this in effect randomizes my frontpage every "3600 seconds" or whatever I set it at.
                                                                            LinkSpun - Premier Adult Link Trading Community - ICQ - 464/\281/\250
                                                                            Be Seen By New Webmasters/Affiliates * Target out webmasters/affiliates based on niches your sites are for less than $20 a month.
                                                                            AmeriNOC - Proudly hosted @ AmeriNOC!

                                                                            Comment

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

                                                                              #39
                                                                              Originally posted by harvey
                                                                              Grouchy, I won't argue on the technical part, since I don't know, but when I see these retarded users, I assume they might have 1 or 2 coders that know a little, and since they're using WP, me and the average Joe will trust that crappy pile of shit known as WP. There might be better scripts, but if it's good for the fucking NASA, Yahoo, CNN, FOX, flickr and Reuters just to name a few, then I'm pretty sure it will be bananas for a small cat like me Oh, and the price ain't too shabby

                                                                              The above being said, I'd be very interested in knowing what would you recommend as an alternative and why do you think WP is that bad (please don't say security, let's be serious here)
                                                                              10 reasons

                                                                              1. Easy Installation and Upgrades
                                                                              2. Fully Customizable XHTML/CSS/PHP
                                                                              3. Ease of Managing Content
                                                                              4. Thousands of Useful Plug-ins
                                                                              5. Fully Customizable URLs
                                                                              6. Fully Functional Search
                                                                              7. Ease of Changing Themes
                                                                              8. Pings and Trackbacks
                                                                              9. Huge community for technical support
                                                                              10. It's Free
                                                                              Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                                                              Comment

                                                                              • stocktrader23
                                                                                Let's do some business.
                                                                                • Jan 2003
                                                                                • 18781

                                                                                #40
                                                                                Originally posted by fris
                                                                                10 reasons





                                                                                Hands Free Adult - Join Once, Earn For Life

                                                                                "I try to make a habit of bouncing my eyes up to the face of a beautiful woman, and often repeat “not mine” in my head or even verbally. She’s not mine. God has her set aside. She’s not mine. She’s His little girl, and she needs me to fight for her by keeping my eyes where they should be."

                                                                                Comment

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

                                                                                  #41
                                                                                  Originally posted by Highest Def
                                                                                  I have searched high and low and keep finding the same 'random posts' widgets. I want to just shuffle every post and eliminate dates all together. It's a Wordpress tube site and every few days I add 20 or 30 clips from a new sponsor, but I don't want the videos clumped together by site like that so I have been adding them with my own random dates, but I'd rather just add them all and have Wordpress do the randomizing.
                                                                                  you could do something like this (very rough)

                                                                                  Code:
                                                                                  <?php 
                                                                                  
                                                                                  // show 5 random posts, dont repeat the same posts for an hour
                                                                                  
                                                                                  function fris_run_cookie($savecookieid) {
                                                                                  
                                                                                  	setcookie("randompostsviewed", ''); //delete old ones
                                                                                  	$savecookiestr=serialize($savecookieid); //use serialize() to store the array
                                                                                  	setcookie("randompostsviewed",$savecookiestr,time()+3600*1,COOKIEPATH, COOKIE_DOMAIN); //keep for 1 hour by default 
                                                                                  
                                                                                  }
                                                                                  
                                                                                  if (isset($_COOKIE['randompostsviewed'])){
                                                                                  			$savecookiestr = $_COOKIE['randompostsviewed'];
                                                                                  			$savecookieid = unserialize($savecookiestr);
                                                                                  			}
                                                                                  			else{
                                                                                  				$savecookieid = array();
                                                                                  			} 
                                                                                  			$savecookieid[] = get_option("sticky_posts");
                                                                                  ?>
                                                                                  
                                                                                  <?php 
                                                                                  
                                                                                  $args = array(
                                                                                  		'post_status' => 'publish',
                                                                                  		'caller_get_posts'=> 1,
                                                                                  		'post__not_in' => $savecookieid, 
                                                                                  		'orderby' => 'rand', 
                                                                                  		'posts_per_page' => 5
                                                                                  		);
                                                                                  
                                                                                  		query_posts($args); 
                                                                                  	  
                                                                                  ?>
                                                                                  
                                                                                  	  <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                                                                                  
                                                                                  <?php if (!in_array($post->ID,$savecookieid,true)) {
                                                                                  			 $savecookieid[]= $post->ID;
                                                                                  			 }
                                                                                  			fris_run_cookie($savecookieid);
                                                                                  ?>
                                                                                  			
                                                                                  <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
                                                                                  
                                                                                  <h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
                                                                                  
                                                                                  <div class="entry-content">
                                                                                  <?php the_content(); ?>
                                                                                  </div>
                                                                                  
                                                                                  <?php endwhile; ?>
                                                                                  <?php endif; ?>
                                                                                  Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                                                                  Comment

                                                                                  • garce
                                                                                    Confirmed User
                                                                                    • Oct 2001
                                                                                    • 7103

                                                                                    #42
                                                                                    Originally posted by Brujah
                                                                                    Why? in this example, the dates are meaningless and only being used to show content on the pages in a different order. In what case would you still want the Archives to show the original order?
                                                                                    I have no idea what I was thinking back then. Right now I'm thinking I don't want a post from 2005 to pop up on my index page. If the random call would only include the last month's posts - fine.

                                                                                    Comment

                                                                                    • harvey
                                                                                      Confirmed User
                                                                                      • Jul 2001
                                                                                      • 9266

                                                                                      #43
                                                                                      Originally posted by garce
                                                                                      I have no idea what I was thinking back then. Right now I'm thinking I don't want a post from 2005 to pop up on my index page. If the random call would only include the last month's posts - fine.
                                                                                      here you have:

                                                                                      Code:
                                                                                      <?php
                                                                                      function filter_where($where = '') {
                                                                                        //posts for last month
                                                                                        $where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'";
                                                                                        return $where;
                                                                                      }
                                                                                      add_filter('posts_where', 'filter_where');
                                                                                      query_posts('numberposts=10&orderby=rand');
                                                                                      ?>
                                                                                      This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth

                                                                                      Comment

                                                                                      • garce
                                                                                        Confirmed User
                                                                                        • Oct 2001
                                                                                        • 7103

                                                                                        #44
                                                                                        Originally posted by harvey
                                                                                        here you have:

                                                                                        Code:
                                                                                        <?php
                                                                                        function filter_where($where = '') {
                                                                                          //posts for last month
                                                                                          $where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'";
                                                                                          return $where;
                                                                                        }
                                                                                        add_filter('posts_where', 'filter_where');
                                                                                        query_posts('numberposts=10&orderby=rand');
                                                                                        ?>
                                                                                        You always come through. I will give this a shot. Thank you in advance.

                                                                                        Comment

                                                                                        Working...