Changeset 7886 for trunk/wp-admin/options-discussion.php
- Timestamp:
- 05/04/2008 06:05:20 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-discussion.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-discussion.php
r7883 r7886 79 79 <h3><?php _e('Avatars') ?></h3> 80 80 81 <p><?php _e(' By default WordPress uses <a href="http://gravatar.com/">Gravatars</a> — short for Globally Recognized Avatars — for the pictures that show up next to comments. Plugins may override this.'); ?></p>81 <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 blog.'); ?></p> 82 82 83 83 <?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? ?> … … 118 118 <?php 119 119 $avatar_defaults = array( 120 'default' => __('Default'), 120 'mystery' => __('Mystery Man'), 121 'blank' => __('Blank'), 121 122 'gravatar_default' => __('Gravatar Logo'), 122 123 'identicon' => __('Identicon (Generated)'), … … 127 128 $default = get_option('avatar_default'); 128 129 if ( empty($default) ) 129 $default = ' default';130 $default = 'mystery'; 130 131 $size = 32; 131 132 $avatar_list = '';
Note: See TracChangeset
for help on using the changeset viewer.