$post->post_author,
'avatar_size' => apply_filters( 'atento_author_avatar_size', 75 ),
'author_name' => get_the_author(),
'posts_url' => get_author_posts_url( $post->post_author ),
'description' => get_the_author_meta( 'description', $post->post_author ),
'website' => get_the_author_meta( 'url', $post->post_author ),
);
// Get author avatar
$data['avatar'] = get_avatar( $post->post_author, $data['avatar_size'] );
// Apply filters so we can tweak the author bio output
$data = apply_filters( 'atento_post_author_bio_data', $data );
// Extract variables
extract( $data ); ?>