WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
12 | <div class="author-avatar"> |
13 | <?php |
14 | /** |
15 | * Filter the author bio avatar size. |
16 | * |
17 | * @since Twenty Thirteen 1.0 |
18 | * |
19 | * @param int $size The avatar height and width size in pixels. |
20 | */ |
21 | $author_bio_avatar_size = apply_filters( 'twentythirteen_author_bio_avatar_size', 74 ); |
22 | echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size ); |
23 | ?> |
24 | </div><!-- .author-avatar --> |
25 | <div class="author-description"> |
26 | <h2 class="author-title"><?php printf( __( 'About %s', 'twentythirteen' ), get_the_author() ); ?></h2> |
27 | <p class="author-bio"> |
28 | <?php the_author_meta( 'description' ); ?> |
29 | <a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> |
30 | <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentythirteen' ), get_the_author() ); ?> |