Entrepreneur Pro isimli temayı kullanıyorum fakat şöyle bir sorunum var konuyu okurken sorun yok ama anasayfada konulardaki resimler görünmüyor linklerde yazı şeklinde görünüyor


[media]http://img16.imageshack.us/img16/4289/scr6442668.jpg[/media]
single.php
<?php 
get_header();
?>


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

<div class="post">
     <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    <div class="meta"><?php _e("Posted by"); ?> <?php the_author() ?> | <?php the_category(',') ?> | <?php the_time('l j F Y'); ?> <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
    
    <div class="storycontent">
        <?php the_content(__('(more...)')); ?>
    </div>
    
    <div class="feedback">
            <?php wp_link_pages(); ?>
            <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
    </div>



<?php comments_template(); // Get wp-comments.php template ?>

<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>

<?php posts_nav_link(' — ', __('&laquo; Previous Page'), __('Next Page &raquo;')); ?>
</div>

<?php get_footer(); ?>