';
echo "";
if($options['display_name'] != 5){
echo '';
if($options['display_name'] == 2 && get_the_author_meta('user_login', $theAuthroID) != null): echo get_the_author_meta('user_login', $theAuthorID);
elseif($options['display_name'] == 3 && get_the_author_meta('user_firstname', $theAuthroID) != null): echo get_the_author_meta('user_firstname', $theAuthorID);
elseif($options['display_name'] == 4 && get_the_author_meta('user_lastname', $theAuthroID) != 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', $theAuthroID), $size = $options['gravatar_size']) . '';
}
if($options['show_title'] && get_the_author_meta('title', $theAuthroID) != null)echo ''. get_the_author_meta('title', $theAuthroID) . '';
if($options['show_company'] && get_the_author_meta('company', $theAuthroID) != null)echo ''. get_the_author_meta('company', $theAuthroID) . '';
echo "";
if($options['show_bio'] && get_the_author_meta('user_description', $theAuthroID) != null) echo ''.get_the_author_meta('user_description', $theAuthroID).'
';
if($options['show_phone'] || $options['show_email'] || $options['show_web']){
echo "";
if($options['show_phone'] && get_the_author_meta('phone', $theAuthroID) != null)echo 'Phone : '. get_the_author_meta('phone', $theAuthroID) . '';
if($options['show_email'] && get_the_author_meta('email', $theAuthroID) != null)echo 'Email : ' . get_the_author_meta('user_email', $theAuthroID) . '';
if($options['show_web'] && get_the_author_meta('user_url', $theAuthroID) != null)echo 'Web : '.get_the_author_meta('user_url', $theAuthroID).'';
echo "
";
}
if(($options['show_twitter'] && get_the_author_meta('twitter', $theAuthroID) != null) || ($options['show_facebook'] && get_the_author_meta('facebook', $theAuthroID) != null) || ($options['show_linkedin'] && get_the_author_meta('linkedin', $theAuthroID) != null)){
echo "";
if($options['social_text'] != null){ echo $options['social_text'] ."
"; }
if($options['social_link']){
if($options['show_twitter'] && get_the_author_meta('twitter', $theAuthroID) != null)echo '';
if($options['show_facebook'] && get_the_author_meta('facebook', $theAuthroID) != null)echo '
';
if($options['show_linkedin'] && get_the_author_meta('linkedin', $theAuthroID) != null)echo '
';
}else{
if($options['show_twitter'] && get_the_author_meta('twitter', $theAuthroID) != null)echo '';
if($options['show_facebook'] && get_the_author_meta('facebook', $theAuthroID) != null)echo 'Facebook';
if($options['show_linkedin'] && get_the_author_meta('linkedin', $theAuthroID) != null)echo 'LinkedIn';
}
echo "
";
}
echo '