Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: default_avatar_select

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
230      $selected = ($default == $default_key) ? 'checked="checked" ' : '';
231      $avatar_list .= "\n\t<label><input type='radio' name='avatar_default' id='avatar_{$default_key}' value='" . esc_attr($default_key) . "' {$selected}/> ";
232
233      $avatar = get_avatar( $user_email, $size, $default_key );
234      $avatar_list .= preg_replace("/src='(.+?)'/", "src='\$1&amp;forcedefault=1'", $avatar);
235
236      $avatar_list .= ' ' . $default_name . '</label>';
237      $avatar_list .= '<br />';
238 }
239 echo apply_filters('default_avatar_select', $avatar_list);
240 ?>
241
242 </fieldset></td>
243 </tr>
244 <?php do_settings_fields('discussion', 'avatars'); ?>
245 </table>
246
247 <?php do_settings_sections('discussion'); ?>
248