Current File : /home/kelaby89/www/wp/wp-content/themes/nexio/skins/default/templates/author-bio.php |
<?php
/**
* The template to display the Author bio
*
* @package NEXIO
* @since NEXIO 1.0
*/
?>
<div class="author_info author vcard" itemprop="author" itemscope="itemscope" itemtype="<?php echo esc_attr( nexio_get_protocol( true ) ); ?>//schema.org/Person">
<div class="author_avatar" itemprop="image">
<a class="author_avatar_link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>">
<?php
$nexio_mult = nexio_get_retina_multiplier();
echo get_avatar( get_the_author_meta( 'user_email' ), 120 * $nexio_mult );
?>
</a>
</div><!-- .author_avatar -->
<div class="author_description">
<h5 class="author_title" itemprop="name"><a class="author_link fn" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"><?php
the_author();
?></a></h5>
<div class="author_label"><?php esc_html_e( 'About Author', 'nexio' ); ?></div>
<div class="author_bio" itemprop="description">
<?php echo wp_kses( wpautop( get_the_author_meta( 'description' ) ), 'nexio_kses_content' ); ?>
<div class="author_links">
<?php do_action( 'nexio_action_user_meta', 'author-bio' ); ?>
</div>
</div><!-- .author_bio -->
</div><!-- .author_description -->
</div><!-- .author_info -->