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
206      $selected = ($default == $default_key) ? 'checked="checked" ' : '';
207      $avatar_list .= "\n\t<label><input type='radio' name='avatar_default' id='avatar_{$default_key}' value='" . esc_attr($default_key)  . "' {$selected}/> ";
208
209      $avatar = get_avatar( $user_email, $size, $default_key );
210      $avatar_list .= preg_replace("/src='(.+?)'/", "src='\$1&amp;forcedefault=1'", $avatar);
211
212      $avatar_list .= ' ' . $default_name . '</label>';
213      $avatar_list .= '<br />';
214 }
215 echo apply_filters('default_avatar_select', $avatar_list);
216 ?>
217
218 </fieldset></td>
219 </tr>
220 <?php do_settings_fields('discussion', 'avatars'); ?>
221 </table>
222
223 <?php do_settings_sections('discussion'); ?>
224