Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: twentyeleven_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
37                     ?>
38
39                     <?php twentyeleven_content_nav( 'nav-above' ); ?>
40
41                     <?php
42                     // If a user has filled out their description, show a bio on their entries.
43                     if ( get_the_author_meta( 'description' ) ) : ?>
44                     <div id="author-info">
45                          <div id="author-avatar">
46                               <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyeleven_author_bio_avatar_size', 60 ) ); ?>
47                          </div><!-- #author-avatar -->
48                          <div id="author-description">
49                               <h2><?php printf( __( 'About %s', 'twentyeleven' ), get_the_author() ); ?></h2>
50                               <?php the_author_meta( 'description' ); ?>
51                          </div><!-- #author-description     -->
52                     </div><!-- #entry-author-info -->
53                     <?php endif; ?>
54
55                     <?php /* Start the Loop */ ?>