این کد
<?php query_posts('showposts=15&offset=0&orderby=rand'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li>
<?php endwhile; endif; ?>
مربوط به نمایش تصادفی تیتر پستها است می تونی از همین کد در فایل ایندکس استفاده کنی و قسمت مربوط به خلاصه پستها را به این کد اضافه کنی یعنی به این صورت:
<?php query_posts('showposts=15&offset=0&orderby=rand'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li> <a>"><?php the_title(); ?></a> </li>
<?php the_content('',FALSE,''); ?>
<?php endwhile; endif; ?>