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 |
|---|---|
| 1659 | $rating = get_option('avatar_rating'); |
| 1660 | if ( !empty( $rating ) ) |
| 1661 | $out .= "&r={$rating}"; |
| 1662 | |
| 1663 | $avatar = "<img alt='{$safe_alt}' src='{$out}' class='avatar avatar-{$size} photo' height='{$size}' width='{$size}' />"; |
| 1664 | } else { |
| 1665 | $avatar = "<img alt='{$safe_alt}' src='{$default}' class='avatar avatar-{$size} photo avatar-default' height='{$size}' width='{$size}' />"; |
| 1666 | } |
| 1667 | |
| 1668 | return apply_filters('get_avatar', $avatar, $id_or_email, $size, $default, $alt); |
| 1669 | } |
| 1670 | endif; |
| 1671 | |
| 1672 | if ( !function_exists( 'wp_text_diff' ) ) : |
| 1673 | /** |
| 1674 | * Displays a human readable HTML representation of the difference between two strings. |
| 1675 | * |
| 1676 | * The Diff is available for getting the changes between versions. The output is |
| 1677 | * HTML, so the primary use is for displaying the changes. If the two strings |