'; //show author avatar if( isset( $afc_opt['author_info']['avatar'] ) ){ $output .= '
'. get_avatar( get_the_author_meta('ID'), 100 ). '
'; } $output .= '
'; //show title for the box if( isset( $afc_opt['author_info']['title'] ) ){ $name = sprintf($afc_opt['author_title'], get_the_author_meta( 'display_name' )); $output .= '

' . $name . '

'; } //show author biography if( isset( $afc_opt['author_info']['bio'] ) ){ $output .= '
' . get_the_author_meta( 'description' ) . '
'; } //show author social profiles links of current author if(isset($afc_opt['author_info']['share_buttons'] ) ){ $output .= afc_profile_buttons(); } //show a link to all posts of the current author if(isset( $afc_opt['author_info']['posts_link'] ) ){ $output .= ''; return $output; } } ?>