Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: twentytwelve_author_bio_avatar_size

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
41           </div><!-- .entry-content -->
42           <?php endif; ?>
43
44           <footer class="entry-meta">
45                <?php twentytwelve_entry_meta(); ?>
46                <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?>
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 class="author-info">
49                          <div class="author-avatar">
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 class="author-description">
53                               <h2><?php printf( __( 'About %s', 'twentytwelve' ), get_the_author() ); ?></h2>
54                               <p><?php the_author_meta( 'description' ); ?></p>
55                               <div class="author-link">
56                                    <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
57                                         <?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'twentytwelve' ), get_the_author() ); ?>
58                                    </a>
59                               </div><!-- .author-link     -->