Ray Viljoen Version: 1.0 Plugin URI: http://catn.com/community/plugins/ Usage: widget. */ // � 2009-2011 Fubra Limited, all rights reserved. class BioWidget extends WP_Widget { /** constructor */ function BioWidget() { parent::WP_Widget(false, $name = 'Author Bio'); } function widget($args, $instance) { global $post; $title = apply_filters('widget_title', $instance['title']); $av_size = $instance['size']; $author = $post->post_author; $name = get_the_author_meta('nickname', $author); $alt_name = get_the_author_meta('user_nicename', $author); $avatar = get_avatar($author, $av_size, 'Gravatar Logo', $alt_name.'-photo'); $description = get_the_author_meta('description', $author); $author_link = get_author_posts_url($author); ?>