Changeset 21941 for trunk/wp-content/themes/twentytwelve/author.php
- Timestamp:
- 09/21/2012 04:39:38 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentytwelve/author.php
r21618 r21941 42 42 // If a user has filled out their description, show a bio on their entries. 43 43 if ( get_the_author_meta( 'description' ) ) : ?> 44 <div id="author-info">45 <div id="author-avatar">44 <div class="author-info"> 45 <div class="author-avatar"> 46 46 <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 60 ) ); ?> 47 </div><!-- #author-avatar -->48 <div id="author-description">47 </div><!-- .author-avatar --> 48 <div class="author-description"> 49 49 <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2> 50 50 <p><?php the_author_meta( 'description' ); ?></p> 51 </div><!-- #author-description -->52 </div><!-- #author-info -->51 </div><!-- .author-description --> 52 </div><!-- .author-info --> 53 53 <?php endif; ?> 54 54
Note: See TracChangeset
for help on using the changeset viewer.