*/ // Author bio box function boldwp_add_author_bio_box() { $content=''; if (is_single()) { $content .= '
'. get_avatar( get_the_author_meta('email') , 80 ) .'
'.esc_html__( 'Author: ', 'boldwp' ).''. get_the_author_link() .'
'. get_the_author_meta('description',get_query_var('author') ) .'
'; } return apply_filters( 'boldwp_add_author_bio_box', $content ); }