Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Show (gr)avatar on frontpage

// Custom Topic Starter Avatars
function topic_author_avatar( $size = '48', $default = '', $post_id = 0 ) {
if ( ! bb_get_option('avatars_show') )
return false;

$author_id = get_topic_author();
if ( $link = get_user_link( $author_id ) ) {
echo '<a href="' . attribute_escape( $link ) . '">' . bb_get_avatar( $author_id, $size, $default ) . '</a>';
} else {
echo bb_get_avatar( $author_id, $size, $default );
}
}

Skip to toolbar