You need to create random.php page in your template.  In that page just copy paste the following code:

<?php
query_posts(array(‘orderby’ => ‘rand’, ‘showposts’ => 1));
if (have_posts()) :
while (have_posts()) : the_post(); ?>

<h1><a href=”<?php the_permalink() ?>”><?php the_title(); ?></a></h1>

<?php the_content(); ?>

<?php endwhile;
endif; ?>

Than crate page through wordpress admin panel and select the random page themplate.

You might also like

Create an Archive Page in your WordPress theme
How to add the flash intro in wordpress sites
How to use a Custom Page as a Home Page in WordPress
how to show featured posts in wordpress
Some best WordPress Hacks for theme developer

Leave a Reply

Wordpressapi is developer code book.
wordpressapi on Facebook
© 2010 Wordpressapi. All Rights Reserved. Reproduction without explicit permission is prohibited.