Вставив код
<?php
query_posts(array(’orderby’ => ‘rand’, ’showposts’ => 1));
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></a>
<?php the_excerpt();
endwhile;
endif; ?>
В шаблон, в нужном месте вы получите [...]
