';
echo "";
if($options['display_name'] != 5){
echo '';
if($options['display_name'] == 2 && get_the_author_meta('user_login', $theAuthorID) != null): echo get_the_author_meta('user_login', $theAuthorID);
elseif($options['display_name'] == 3 && get_the_author_meta('user_firstname', $theAuthorID) != null): echo get_the_author_meta('user_firstname', $theAuthorID);
elseif($options['display_name'] == 4 && get_the_author_meta('user_lastname', $theAuthorID) != null): echo get_the_author_meta('user_lastname', $theAuthorID);
else: echo get_the_author_meta('display_name', $theAuthorID);
endif;
echo '';
}
if($options['show_gravatar']){
echo '' . get_avatar( get_the_author_meta('user_email', $theAuthorID), $size = $options['gravatar_size']) . '';
}
if($options['show_title'] && get_the_author_meta('title', $theAuthorID) != null)echo ''. get_the_author_meta('title', $theAuthorID) . '';
if($options['show_company'] && get_the_author_meta('company', $theAuthorID) != null)echo ''. get_the_author_meta('company', $theAuthorID) . '';
echo "";
if($options['show_bio'] && get_the_author_meta('user_description', $theAuthorID) != null) echo ''.get_the_author_meta('user_description', $theAuthorID).'
';
if($options['show_phone'] || $options['show_email'] || $options['show_web']){
echo "";
if($options['show_phone'] && get_the_author_meta('phone', $theAuthorID) != null){
$phone_label = empty($options['phone_label']) ? '' : ''.$options['phone_label'].'';
echo ''. $phone_label . get_the_author_meta('phone', $theAuthorID) . '';
}
if($options['show_email'] && get_the_author_meta('email', $theAuthorID) != null){
$email_label = empty($options['email_label']) ? '' : ''.$options['email_label'].'';
echo ''. $email_label . '' . get_the_author_meta('user_email', $theAuthorID) . '';
}
if($options['show_web'] && get_the_author_meta('user_url', $theAuthorID) != null){
$web_label = empty($options['web_label']) ? '' : ''.$options['web_label'].'';
echo '' . $web_label . ''.get_the_author_meta('user_url', $theAuthorID).'';
}
echo "
";
}
if(($options['show_twitter'] && get_the_author_meta('twitter', $theAuthorID) != null) || ($options['show_facebook'] && get_the_author_meta('facebook', $theAuthorID) != null) || ($options['show_linkedin'] && get_the_author_meta('linkedin', $theAuthorID) != null)){
echo "";
if($options['social_text'] != null){ echo $options['social_text'] ."
"; }
if($options['social_link']){
if($options['show_twitter'] && get_the_author_meta('twitter', $theAuthorID) != null)echo '';
if($options['show_facebook'] && get_the_author_meta('facebook', $theAuthorID) != null)echo '
';
if($options['show_linkedin'] && get_the_author_meta('linkedin', $theAuthorID) != null)echo '
';
}else{
if($options['show_twitter'] && get_the_author_meta('twitter', $theAuthorID) != null)echo '';
if($options['show_facebook'] && get_the_author_meta('facebook', $theAuthorID) != null)echo 'Facebook';
if($options['show_linkedin'] && get_the_author_meta('linkedin', $theAuthorID) != null)echo 'LinkedIn';
}
echo "
";
}
echo '