index.php dosyanızda bulunan yazı yayınlama kodlarını silip ( temanızı bilmediğim için tam bir kod söyleyemiyorum. Eğer yapamazsanız index.php dosyanızı ekleyin yapalım )

<?php
$lastposts = get_posts('numberposts=15');
foreach($lastposts as $post) :
setup_postdata($post);
?>
<h2><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php endforeach; ?>

kodunu eklerseniz sorununuz çözülecektir.