Changeset 46088 for trunk/src/wp-content/themes/twentyeleven/author.php
- Timestamp:
- 09/10/2019 07:22:07 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/author.php
r45932 r46088 60 60 * @param int The height and width avatar dimension in pixels. Default 60. 61 61 */ 62 echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyeleven_author_bio_avatar_size', 60 ) ); 62 $author_bio_avatar_size = apply_filters( 'twentyeleven_author_bio_avatar_size', 60 ); 63 echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size ); 63 64 ?> 64 65 </div><!-- #author-avatar -->
Note: See TracChangeset
for help on using the changeset viewer.