| Current Path : /home/sunflowe/www2/disneyexplorer/wp-content/themes/wide/ |
| Current File : /home/sunflowe/www2/disneyexplorer/wp-content/themes/wide/author-bio.php |
<?php /** * The template for displaying Author bios * * @author NanoAgency * @link http://nanoagency.co * @copyright Copyright (c) 2015 NanoAgency * @license GPL v2 */ ?> <div class="author-info"> <h2 class="author-heading"><?php esc_html_e( 'Published by', 'wide' ); ?></h2> <div class="author-avatar"> <?php $author_bio_avatar_size = apply_filters( 'wide_author_bio_avatar_size', 56 ); echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size ); ?> </div><!-- .author-avatar --> <div class="author-description"> <h3 class="author-title"><?php echo esc_attr(get_the_author()); ?></h3> <p class="author-bio"> <?php the_author_meta( 'description' ); ?> <a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> <?php printf( esc_html__( 'View all posts by %s', 'wide' ), get_the_author() ); ?> </a> </p><!-- .author-bio --> </div><!-- .author-description --> </div><!-- .author-info -->