How can I make wordpress only show the titles of posts instead of the whole post? I made a tutorial website and I dont want people to have to look at every tutorial to find one they want.
Plugins that insert code probably won't help, because they inserts the code
after WordPress has processed the more tag. Cat's already out of the bag so to speak by then.
You need to edit the index.php for your theme and find the
Code:
<?php the_content('Read the rest of this entry »'); ?>
line. Note, yours may have a different message - you're really looking for the line that has
the_content. That's the bit which calls the body of the post. Remove this line and the body will no longer be shown, just the title and the author and date etc.
To edit the file, you
may be able to edit it through WordPress directly, in the Presentation -> Theme Editor page. Otherwise, FTP into your site and download index.php from the wp-content/themes/<yourtheme> directory, edit it, and FTP it back up overwriting the original.
NOTE: Before you make any changes, make sure you have a copy to put back if things go wrong and backup your site if possible.