I need more lament instructions – I am sorry.
I am assuming this is the Post Loop (index.php page?) you are talking about, but where exactly does or userphoto_the_author_thumbnail() go in the code?
<?php get_header(); ?>
<div id=”container”>
<?php if(have_posts()): ?><?php while(have_posts()):the_post(); ?>
<div class=”post”>
<h2>” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>
<div class=”postinfo”>
<?php _e(‘Posted on’); ?> <span class=”postdate”><?php the_time(‘F jS, Y’) ?></span> <?php _e(‘by’); ?> <?php the_author() ?>
</div>
<div class=”entry”>
<?php the_content(); ?>
<p class=”postmetadata”>
<?php _e(‘Tags:’); ?> <?php the_category(‘, ‘) ?> <?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?> // <?php comments_popup_link(‘Add Comment »’, ‘1 Comment »’, ‘% Comments »’); ?>
</p>
</div>
</div>
<?php endwhile; ?>
<div class=”navigation”>
<?php posts_nav_link(); ?>
</div>
<?php else: ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2><?php _e(‘Not Found’); ?></h2>
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer() ?>
</div></body>
</html>