$query = new WP_Query( array ( 'orderby' => 'rand', 'posts_per_page' => '1' ) ); while ( $query->have_posts() ) : $query->the_post(); echo '<li>' . get_the_title() . '</li>'; endwhile;