<?php
$args = array(
'posts_per_page' => 1,
'orderby' => 'rand',
);
if ( have_posts() ) : query_posts($args);
while (have_posts()) : the_post();
?>
<a href="<?php the_permalink(); ?>"/>
<?php endif; ?>
<?php
endwhile; ?>
<?php endif;
wp_reset_query();
?>