<?php /** * The template to display the Author bio * * @package BONBON * @since BONBON 1.0 */ ?> <div class="author_info author vcard" itemprop="author" itemscope="itemscope" itemtype="<?php echo esc_attr( bonbon_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 $bonbon_mult = bonbon_get_retina_multiplier(); echo get_avatar( get_the_author_meta( 'user_email' ), 120 * $bonbon_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', 'bonbon' ); ?></div> <div class="author_bio" itemprop="description"> <?php echo wp_kses( wpautop( get_the_author_meta( 'description' ) ), 'bonbon_kses_content' ); ?> <div class="author_links"> <?php do_action( 'bonbon_action_user_meta', 'author-bio' ); ?> </div> </div><!-- .author_bio --> </div><!-- .author_description --> </div><!-- .author_info -->