Help to display random post from one cat
-
I have this code :
<?php $recent = new WP_Query("cat=5&showposts=1 "); while($recent->have_posts()) : $recent->the_post();?> <b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b> <?php the_content_limit(130, ""); ?>
This code displays one latest post from cat “5” and trim the content to 130 characters.
What i want is to get an random post from cat”5″ not the first one.
Thank you.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Help to display random post from one cat’ is closed to new replies.