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 |
---|---|
2192 | * |
2193 | * @since 2.5.0 |
2194 | * |
2195 | * @param string $avatar Image tag for the user's avatar. |
2196 | * @param int|object|string $id_or_email A user ID, email address, or comment object. |
2197 | * @param int $size Square avatar width and height in pixels to retrieve. |
2198 | * @param string $alt Alternative text to use in the avatar image tag. |
2199 | * Default empty. |
2200 | */ |
2201 | return apply_filters( 'get_avatar', $avatar, $id_or_email, $size, $default, $alt ); |
2202 | } |
2203 | endif; |
2204 |
|
2205 | if ( !function_exists( 'wp_text_diff' ) ) : |
2206 | /** |
2207 | * Displays a human readable HTML representation of the difference between two strings. |
2208 | * |
2209 | * The Diff is available for getting the changes between versions. The output is |
2210 | * HTML, so the primary use is for displaying the changes. If the two strings |