Changeset 25521 for trunk/src/wp-content/themes/twentytwelve/author.php
- Timestamp:
- 09/20/2013 07:23:22 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/author.php
r22318 r25521 1 1 <?php 2 2 /** 3 * The template for displaying Author Archive pages .3 * The template for displaying Author Archive pages 4 4 * 5 5 * Used to display archive-type pages for posts by an author. 6 6 * 7 * Learn more:http://codex.wordpress.org/Template_Hierarchy7 * @link http://codex.wordpress.org/Template_Hierarchy 8 8 * 9 9 * @package WordPress … … 48 48 <div class="author-info"> 49 49 <div class="author-avatar"> 50 <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 60 ) ); ?> 50 <?php 51 //duplicate_hook 52 $author_bio_avatar_size = apply_filters( 'twentytwelve_author_bio_avatar_size', 68 ); 53 echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size ); 54 ?> 51 55 </div><!-- .author-avatar --> 52 56 <div class="author-description">
Note: See TracChangeset
for help on using the changeset viewer.