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 Twenty Sixteen author bio avatar size. |
| 16 | * |
| 17 | * @since Twenty Sixteen 1.0 |
| 18 | * |
| 19 | * @param int $size The avatar height and width size in pixels. |
| 20 | */ |
| 21 | $author_bio_avatar_size = apply_filters( 'twentysixteen_author_bio_avatar_size', 42 ); |
| 22 | |
| 23 | echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size ); |
| 24 | ?> |
| 25 | </div><!-- .author-avatar --> |
| 26 | |
| 27 | <div class="author-description"> |
| 28 | <h2 class="author-title"><span class="author-heading"><?php _e( 'Author:', 'twentysixteen' ); ?></span> <?php echo get_the_author(); ?></h2> |
| 29 | |
| 30 | <p class="author-bio"> |