Changeset 21941 for trunk/wp-content/themes/twentytwelve/content.php
- Timestamp:
- 09/21/2012 04:39:38 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentytwelve/content.php
r21437 r21941 46 46 <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?> 47 47 <?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries. ?> 48 <div id="author-info">49 <div id="author-avatar">48 <div class="author-info"> 49 <div class="author-avatar"> 50 50 <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentytwelve_author_bio_avatar_size', 68 ) ); ?> 51 </div><!-- #author-avatar -->52 <div id="author-description">51 </div><!-- .author-avatar --> 52 <div class="author-description"> 53 53 <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2> 54 54 <p><?php the_author_meta( 'description' ); ?></p> 55 <div id="author-link">55 <div class="author-link"> 56 56 <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> 57 57 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentytwelve' ), get_the_author() ); ?> 58 58 </a> 59 </div><!-- #author-link -->60 </div><!-- #author-description -->61 </div><!-- #author-info -->59 </div><!-- .author-link --> 60 </div><!-- .author-description --> 61 </div><!-- .author-info --> 62 62 <?php endif; ?> 63 63 </footer><!-- .entry-meta -->
Note: See TracChangeset
for help on using the changeset viewer.