Am using Suffusion as my theme and there 2 php files, author and authors. The template tag get_avatar is in authors.php and I tried changing it but in vain :(
The description of each php says
authors.php
* Displays all the authors of this blog.
* A brief bio is shown for each author.
author.php
* Displays a bio and the posts for a given author. The posts can be shown either as excerpts or full contents
So I think that get_avatar should have been in this php whereas it is now in authors.php
I am putting up the entire code from author.php please let me know what should I add and where?
Thank you Ben its really kind of you to help me in this.
get_header();
?>
<div id="main-col">
<?php suffusion_before_begin_content(); ?>
<div id="content">
<?php suffusion_after_begin_content(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post fix" id="post-<?php the_ID(); ?>">
<?php suffusion_after_begin_post(); ?>
<div class="entry fix">
<?php suffusion_content(); ?>
</div><!--entry -->
<?php suffusion_before_end_post(); ?>
</div><!--post -->
<?php endwhile; ?>
<?php suffusion_before_end_content(); ?>
<?php else : ?>
<div class="post fix">
<h2><?php _e("Not Found", "suf_theme"); ?></h2>
<hr/>
<p><?php _e("Sorry, but you are looking for something that isn't here", "suf_theme"); ?></p>
</div><!--post -->
<?php endif; ?>
</div><!-- content -->
</div><!-- main col -->
<?php get_footer(); ?>