This is not really a mod, but quite helpful.
I don't know if this is the right place to post this, if not, please move.
This modification inserts an edit link next to the comments info, beneath the header of each posting.
//open index.php with your favorite editor
Search this:
<h4><?php the_time('F jS, Y') ?><!-- by <?php the_author() ?> --> · <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></h4>
and replace it with:
<h4><?php the_time('F jS, Y') ?><!-- by <?php the_author() ?> --> · <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> · <?php edit_post_link('Edit', '', ''); ?></h4>
now save and close the file, upload it to the right directory replacing the old file.
Let's say, you've been blogging a while and can't remember how you've handled your blog without this cute edit link. You probably have recognized that the edit link is missing in the detailed post view. To fix this, read on...
// open single.php with your favorite editor
Search this:
<h4><?php the_time('F jS, Y') ?><!-- by <?php the_author() ?> --> · <a href="<?php the_permalink() ?>#comments"><?php comments_number('No Comments', '1 Comment', '% Comments'); ?></a></h4>
and replace it with:
<h4><?php the_time('F jS, Y') ?><!-- by <?php the_author() ?> --> · <a href="<?php the_permalink() ?>#comments"><?php comments_number('No Comments', '1 Comment', '% Comments'); ?></a> · <?php edit_post_link('Edit', '', ''); ?></h4>
now save and close the file, upload it to the right directory replacing the old file.
Any problems? -tell me and i will do my best to support you.