It looks like your post content is in an area starting with
<div class="entry">
Add an author template tag:
Posted by <?php the_author_posts_link() ?> |
Look toward the end where the date code
<?php the_date(); ?> and delete it. Add <?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?> code right under the <div class="entry"> and the post title and before the <?php the_content(__('(more...)')); ?>
so it should now read:
(Posted by | Date, Time): Posted by <?php the_author_posts_link() ?> | <?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?>
(content): <?php the_content(__('(more...)')); ?>
(categories): <?php the_category(', ') ?>
Then look for "add a comment" and place a pipe "|" and add <?php the_permalink(); ?> for the permalink.
If you want to really understand this, you'll want to read the Codex and understand Template Tags . You'll soon get the hang of how to place different information within your posts. Also, each "tag" might have a different "div class" or "div id" and that just tells the browser how each tag should look. I.e., maybe you wante the date and time to appear in bright red. You'll have to define that in your css stylesheet. HTH