]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/twentythirteen/author-bio.php
Wordpress 3.6
[autoinstalls/wordpress.git] / wp-content / themes / twentythirteen / author-bio.php
1 <?php
2 /**
3  * The template for displaying Author bios.
4  *
5  * @package WordPress
6  * @subpackage Twenty_Thirteen
7  * @since Twenty Thirteen 1.0
8  */
9 ?>
10
11 <div class="author-info">
12         <div class="author-avatar">
13                 <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentythirteen_author_bio_avatar_size', 74 ) ); ?>
14         </div><!-- .author-avatar -->
15         <div class="author-description">
16                 <h2 class="author-title"><?php printf( __( 'About %s', 'twentythirteen' ), get_the_author() ); ?></h2>
17                 <p class="author-bio">
18                         <?php the_author_meta( 'description' ); ?>
19                         <a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
20                                 <?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ), get_the_author() ); ?>
21                         </a>
22                 </p>
23         </div><!-- .author-description -->
24 </div><!-- .author-info -->