Auf deiner single.php wird die Überschrift über dem Bild gezeigt. Ausschlaggebend ist die index.php.
Dort sollte etwas stehen wie:
PHP
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></a></h2>
<?php the_post_thumbnail(''); ?>
<div class="entry">
<?php the_excerpt(); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
Alles anzeigen
Schau mal nach "the_post_thumbnail" oder ähnlichem. Thumbnail ist das Vorschaubild. Das muss unter der Überschrift platziert sein ("the_title" oder ähnliches).