Show post in random order
-
Hi
I use the next code for show my post
<?php $my_query = new WP_Query('cat=9&showposts=10'); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?> <?php the_title(); ?> <?php the_content(); ?> <?php the_excerpt(''); ?> <?php endwhile; ?>
Show the items of the category 9 in order for date.
How can show the post in random order?thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Show post in random order’ is closed to new replies.