User Photo and Featured Blog Widget are great . . . Thanks so much!
What I am wanting to accomplish is to place the thumbnail sized user uploaded photo in side of the featured blog widget. I know html well and only enough php to do a little editing and figure out a tad bit so this is an issue for me. The code I am using to place the thumbnail sized user photo in the comments is as follows . . .
<?php
if (function_exists('userphoto_the_author_thumbnail')) {
$author_id=$post->post_author;
$curuser = get_userdata($author_id);
$author_post_url=get_author_posts_url($curuser->ID, $curuser->nicename);
echo '';
echo '<a style="float:left;margin:10px 10px 10px -10px;" href="' . $author_post_url . '" title="' . sprintf( __( "View all posts by %s" ), $curuser->user_nicename ) . '" ' . '>';
userphoto_the_author_thumbnail();}
echo '</a>';
?>
I'm thinking this works great in the comments because it is in the loop and widgets are outside the loop. Any help would be appreciated. I can add the code for the featured blog widget here as well if need be.