How To Get Random Post
-
I have a bunch of categories and sub-categories in hierarchy like this:
A
AA
AB
AC
B
BA
BB
C
CA
CB etc.Right now I display the latest post from any of the A categories AA, AB, AC using this code.
<?php query_posts('showposts=1&cat=75,76,77'); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?>
What I would like to do is, instead of the latest post, have it choose a random post from those categories. It could display a different post each time the page is loaded, or even better would be to have one post be chosen for the whole day.
Is there anyway to accomplish this?
Thanks for reading.
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘How To Get Random Post’ is closed to new replies.