File: /home/jairicem/victoriousloycefoundation.org/wp-content/themes/poorex/template-parts/biography.php
<?php
$author_data = get_the_author_meta( 'description', get_query_var( 'author' ) );
$author_info = get_the_author_meta( 'poorex_write_by');
$facebook_url = get_the_author_meta( 'poorex_facebook' );
$twitter_url = get_the_author_meta( 'poorex_twitter' );
$linkedin_url = get_the_author_meta( 'poorex_linkedin' );
$instagram_url = get_the_author_meta( 'poorex_instagram' );
$poorex_url = get_the_author_meta( 'poorex_youtube' );
$poorex_write_by = get_the_author_meta( 'poorex_write_by' );
$author_bio_avatar_size = 180;
if ( $author_data != '' ):
?>
<div class="blog__author-3 d-sm-flex grey-bg mb-90">
<div class="blog__author-thumb-3 mr-20">
<a href="<?php print esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) )?>">
<?php print get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size, '', '', [ 'class' => 'media-object img-circle' ] );?>
</a>
</div>
<div class="blog__author-content">
<h4><a href="<?php print esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) )?>">
</a></h4>
<?php if (!empty($author_info)) : ?>
<span><?php print esc_html($author_info); ?></span>
<?php endif; ?>
<p><?php the_author_meta( 'description' );?></p>
</div>
</div>
<?php endif;?>