Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Control Post Gravatar Link…

@sambauers

Participant

Put this into your themes functions.php file and call it at will. It may screw up with pingback posts, not sure though.

function my_post_author_avatar_profile_link( $size = '48', $default = '', $post_id = 0 ) {
if ( ! bb_get_option('avatars_show') )
return false;

$author_id = get_post_author_id( $post_id );
if ( $link = get_user_profile_link( $author_id ) ) {
echo '<a href="' . esc_attr( $link ) . '">' . bb_get_avatar( $author_id, $size, $default ) . '</a>';
} else {
echo bb_get_avatar( $author_id, $size, $default );
}
}

Skip to toolbar