I liked the author information that the default theme Twentyten added below a post with avatar and text (if the author edited that entry).
I added the appropriate code at line 55 by copying it from the single.php of the default theme.
<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?>
<div id="entry-author-info">
<div id="author-avatar">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
</div><!-- #author-avatar -->
<div id="author-description">
<h2><?php printf( esc_attr__( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
<?php the_author_meta( 'description' ); ?>
<div id="author-link">
">
<?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentyten' ), get_the_author() ); ?>
</div><!-- #author-link -->
</div><!-- #author-description -->
</div><!-- #entry-author-info -->
<?php endif; ?>
Although it works it doesn't look really good as the classes are missing :-)
Example: http://www.injelea-blog.de/2010/07/30/klaviator-lars-reichow-in-schwabenheim/
Would there be a quite simple solution for that or should I try to find the appropriate CSS classes so it looks nicer?














