Thread Starter
Quicky
(@quicky)
Well… I found a temporary work-around by replacing
<?php while (have_posts()) : the_post(); ?>
in the Main Index Template with
<?php $my_query = new WP_Query('showposts=6');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
This seems to get rid of the ‘Previous Entries’ link though, making it impossible to see older posts…
If anyone has any ideas, then please let me know. Thank you!
I too would like to be able to add a random image to my blog that doesn’t change at every reload but at a certain time interval.
I’m actually looking to implement a ‘<<subject>> Picture of the Day’ kind of thing. So I’d need something that changes the picture at random from a directory every day and so that it will show the same picture for every user…
Any help would be greatly appreciated.