Changeset 19593 for trunk/wp-admin/options-discussion.php
- Timestamp:
- 12/13/2011 11:45:31 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-discussion.php
r19507 r19593 165 165 <h3><?php _e('Avatars'); ?></h3> 166 166 167 <p><?php _e('An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites. 167 <p><?php _e('An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites. Here you can enable the display of avatars for people who comment on your site.'); ?></p> 168 168 169 169 <?php // the above would be a good place to link to codex documentation on the gravatar functions, for putting it in themes. anything like that? ?> … … 229 229 foreach ( $avatar_defaults as $default_key => $default_name ) { 230 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) 231 $avatar_list .= "\n\t<label><input type='radio' name='avatar_default' id='avatar_{$default_key}' value='" . esc_attr($default_key) . "' {$selected}/> "; 232 232 233 233 $avatar = get_avatar( $user_email, $size, $default_key );
Note: See TracChangeset
for help on using the changeset viewer.