moshu - when I look at the Theme editor in my admin pages, I don't see an "index.php" ... I have:
post.php
author.php
profiles.php (something I've created that doesn't work)
I also have a Main Index Template, which when I select it, it says I'm editing the Index.php ... however ...
I don't see the_content in that code ... here is the main part of that code (I think) ..
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div class="post">
<?php require('post.php'); ?>
<?php comments_template(); // Get wp-comments.php template ?>
</div>
Any ideas? What I'm hoping to do is have the full post show up on the main page (I only display 1 day at a time) and then when sorted by category, show the_exerpt.
I also would like the_exerpt to show on my author.php, and then have all the posts for that author, but currently only the most recent post shows up (though it is the_exertp)
Sorry ... that may be many questions under this one topic!