Hi godsreal!
In your Main Index Template, look for The_Loop.
In my template, it looks like this:
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="posttitle">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="post-info">This post was scribbled on <?php the_time('F jS, Y @ H:i:s O (T)') ?> by <?php the_author_posts_link() ?>and is filed under the category <?php the_category(', ') ?>.<?php edit_post_link('[Edit this post]', '', ''); ?>
</div>
<div class="entry">
<?php the_content('Continue Reading »'); ?>
</div>
<p class="postmetadata" style="text-align: right;"><?php comments_popup_link('Comments: <span style="font-size:12px; border:1px solid grey"> 0 </span>', 'Comments: <span style="font-size:12px; border:1px solid grey"> 1 </span>', 'Comments: <span style="font-size:12px; border:1px solid grey"> % </span>'); ?>
<?php comments_template(); ?>
</div>
<?php endwhile; ?>
the_title() is the function for showing the title of your post. The rest is just additional info. So, it ought to work if you shorten it to this:
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="posttitle">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div>
</div>
<?php endwhile; ?>
Remember: this is what my template would look like. If you use a different theme, it might have a slightly different code in it.
Not quite sure if one can leave the comments_template() out… you’ll have to check. So, do not forget to make a backup! ??