*/ function boxwp_add_author_bio_box() { $content=''; if (is_single()) { $content .= '
'. get_avatar( get_the_author_meta('email') , 80 ) .'

'.esc_html__( 'Author: ', 'boxwp' ).''. get_the_author_link() .'

'. get_the_author_meta('description',get_query_var('author') ) .'
'; } return $content; }