Changeset 46088 for trunk/src/wp-content/themes/twentyten/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/twentyten/author.php
r45932 r46088 48 48 * @param int The height and width avatar dimensions in pixels. Default 60. 49 49 */ 50 echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); 50 $author_bio_avatar_size = apply_filters( 'twentyten_author_bio_avatar_size', 60 ); 51 echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size ); 51 52 ?> 52 53 </div><!-- #author-avatar -->
Note: See TracChangeset
for help on using the changeset viewer.