Merhaba arkadaşlar index sayfasında son görüntülenen yazıların altında yeni bir alan oluşturup orada da rast gele yazıları göstermek istiyorum bunu nasıl yapabilirim.

index.php dosyasının kodları:

<?php get_header(); ?>

    <div id="contentwrap">


        <div id="maincontent">

            <?php if (have_posts()) : ?>
            <?php while (have_posts()) : the_post(); ?> 


            
            <div class="galleryitem" id="post-<?php the_ID(); ?>">
                <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><img src="<?php if ( function_exists('p75GetThumbnail') )echo p75GetThumbnail($post->ID); ?>" alt="<?php the_title(); ?>" /></a>
                
                <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title2('', '...', true, '20') ?></a></h3>
                
                <div class="commentsnumber">
                    <a href="<?php the_permalink() ?>#comments" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php comments_number('0', '1', '%'); ?></a>
                </div> 
                
                <p><?php the_content_rss('', TRUE, '', 25); ?></p>                
            </div>
            <?php endwhile; ?>

            




            <div id="pagenavi">
                <div id="older" class="alignleft"><?php next_posts_link('Older Entries') ?></div>
                <div id="newer" class="alignright"><?php previous_posts_link('Newer Entries') ?></div>   
            </div>
            
            <?php else : ?>
            
            <h2 class='center'>No posts found</h2>
            
            <?php endif; ?>           
        
        </div> <!-- maincontent -->
        <div class="ortablokalt"></div>


        
        
        <?php get_sidebar(); ?>
    
    </div> <!-- contentwrap -->
    

<?php get_footer(); ?>