Title: Avatar Manager
Author: Cătălin Dogaru
Published: <strong>2013 年 1 月 29 日</strong>
Last modified: 2021 年 2 月 2 日

---

搜索插件

![](https://ps.w.org/avatar-manager/assets/banner-772x250.png?rev=2461930)

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

![](https://ps.w.org/avatar-manager/assets/icon-256x256.png?rev=1979607)

# Avatar Manager

 作者：[Cătălin Dogaru](https://profiles.wordpress.org/cdog/)

[下载](https://downloads.wordpress.org/plugin/avatar-manager.1.6.1.zip)

 * [详情](https://cn.wordpress.org/plugins/avatar-manager/#description)
 * [评价](https://cn.wordpress.org/plugins/avatar-manager/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/avatar-manager/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/avatar-manager/#developers)

 [支持](https://wordpress.org/support/plugin/avatar-manager/)

## 描述

Avatar Manager for WordPress is a sweet and simple plugin for storing avatars locally
and more. Easily.

Enhance your WordPress website by letting your users choose between using Gravatar
or a self-hosted avatar image right from their profile screen. Improved workflow,
on-demand image generation and custom user permissions under a native interface.
Say hello to the Avatar Manager plugin.

#### Help Preserve this Project

Want to support this project for continued development and freely available for 
everyone? Here’s how you can help preserve Avatar Manager:

 * [**Get involved.**](https://github.com/resourcestream/avatar-manager#contributing)
   Contribute a patch or help resolving an existing issue or confirmed feature request,
   or submit a translation.
 * [**Suggest adding to core.**](https://core.trac.wordpress.org/ticket/16020) Whether
   you find Avatar Manager a good fit for WordPress core your feedback can help 
   make a difference.
 * [**Add your own review.**](https://wordpress.org/support/view/plugin-reviews/avatar-manager#postform)
   Let others know how was your experience using Avatar Manager.
 * [**Make a donation.**](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SMKJZHX7G3VQS)
   Keep me motivated with a candy bar or a theater ticket. Is that simple.

Avatar Manager is a user-driven project, and all developments and enhancements depend
on users like _you_! Become a contributor or make a donation, and get your name 
featured in front of a [growing audience](https://wordpress.org/plugins/avatar-manager/stats/).

_Thank you for choosing to contribute to Avatar Manager!_

#### Contributing

Have a bug or a feature request? Please [open a new issue](https://github.com/resourcestream/avatar-manager/issues).
Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines),
written by [Nicolas Gallagher](https://github.com/necolas/). Please submit all pull
requests against development branches.

 * [Avatar Manager on GitHub](https://github.com/resourcestream/avatar-manager)

#### How It’s Made

Find out how Avatar Manager it’s made on [Tuts+ Code](http://code.tutsplus.com/series/how-to-create-a-wordpress-avatar-management-plugin-from-scratch--wp-33866).

#### Authors

**Cătălin Dogaru**

 * https://profiles.wordpress.org/cdog
 * https://github.com/cdog

#### 贡献者

Avatar Manager is brought to you by these fine folks.

[Artem Frolov](https://profiles.wordpress.org/dikiy_forester),
 [Brice Capobianco](https://profiles.wordpress.org/brikou),
[Guy Steyaert](https://profiles.wordpress.org/ideos), [Johan Steen](https://profiles.wordpress.org/artstorm),
[Lucas Uzan](https://profiles.wordpress.org/wiiz83), [Mateus Neves](https://profiles.wordpress.org/mateusneves),
[Maura Montero D.](https://profiles.wordpress.org/modima65), [Pieter Goosen](https://profiles.wordpress.org/pietergoosen),
[Samantha Muthiah](https://profiles.wordpress.org/schm168), [Snowboard Mommy](https://profiles.wordpress.org/snowboardmommy)

#### Copyright and License

Copyright © 2021 Cătălin Dogaru

This program is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY 
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this
program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street,
Fifth Floor, Boston, MA 02110-1301, USA.

## 屏幕截图

 * [[
 * Avatar Manager options under the [Settings Discussion Screen](https://codex.wordpress.org/Settings_Discussion_Screen).
 * [[
 * Avatar Manager options under the [Users Your Profile Screen](https://codex.wordpress.org/Users_Your_Profile_Screen).
 * [[
 * Avatar Manager options under the [Users Your Profile Screen](https://codex.wordpress.org/Users_Your_Profile_Screen).

## 安装

Installation is simple as peas.

 1. Install Avatar Manager either via the WordPress.org plugin directory, or by uploading
    the files to your server.
 2. After activating Avatar Manager, you will be able to customize the plugin options
    under the [Settings Discussion Screen](https://codex.wordpress.org/Settings_Discussion_Screen).
 3. That’s it. You’re ready to go!

## 常见问题

### Can I choose between my Gravatar and my custom avatar?

Yes, you can choose between your Gravatar and your custom avatar under the [Users Your Profile Screen](https://codex.wordpress.org/Users_Your_Profile_Screen).

### Can I choose a rating for my custom avatar?

Yes, you can choose a rating for your custom avatar under the [Users Your Profile Screen](https://codex.wordpress.org/Users_Your_Profile_Screen).

### Can low privileged users upload their own avatar?

Yes, you can enable this feature under the [Settings Discussion Screen](https://codex.wordpress.org/Settings_Discussion_Screen).

### Can I add the self-hosted avatars to my template files?

Yes, you can add the self-hosted avatars to your template files by using the WordPress
built-in [`get_avatar()`](https://codex.wordpress.org/Function_Reference/get_avatar)
function to retrieve the avatar for a user who provided a user ID or email address.

### Can I create a default custom avatar?

Yes, you can easily add your own by adding a filter to the `avatar_defaults` hook.
After uploading the new image to your theme files, add this to your theme’s `function.
php` file:

    ```
    <?php
    function custom_avatar_defaults ( $avatar_defaults ) {
        $avatar_url = get_bloginfo( 'template_directory' ) . '/images/avatar-default.png';
        $avatar_defaults[$avatar_url] = __( 'Custom Default Avatar', 'mytextdomain' );

        return $avatar_defaults;
    }

    add_filter( 'avatar_defaults', 'custom_avatar_defaults' );
    ?>
    ```

Now, go to [Settings Discussion Screen](https://codex.wordpress.org/Settings_Discussion_Screen)
and select your new avatar from the list.

## 评价

![](https://secure.gravatar.com/avatar/6cfc8c01f1ea3a75ec6f7dba8f2a014ef4cca4fd63a50fb3c8772e492e472ecc?
s=60&d=retro&r=g)

### 󠀁[Works in WP 6.4.2, Not sure is Still Supported](https://wordpress.org/support/topic/works-in-wp-6-4-2-not-sure-is-still-supported/)󠁿

 [Dennis Bareis](https://profiles.wordpress.org/dbareis/) 2023 年 12 月 20 日

First off great that this plugin works, doesn’t cause download of huge images to
display as small avatars and seems to work well 🙂 I like that it supports gravatar
as a default. I’m not sure it is still supported but if it is, it needs to have 
at least meta data updated so everything doesn’t point to moved pages and needs 
to be marked as tested in release 6.4.2 or so…

![](https://secure.gravatar.com/avatar/f2dbfa9168dab27955e5b71744da44875df333d73135bc55be39136a2fe190ca?
s=60&d=retro&r=g)

### 󠀁[So sad, I had to deactivate Avatar Manager](https://wordpress.org/support/topic/so-sad-i-had-to-deactivate-avatar-manager/)󠁿

 [Marjoline](https://profiles.wordpress.org/marjoline/) 2021 年 8 月 17 日 6 回复

Much appreciated Avatar Manager… until after a recent update, it caused a strange
effect in our User Submitted Posts. (USP Pro) What happened was, logged in users
were no longer able to submit the posts. Only NON-logged in users could submit posts,
which is of course just the opposite to what we want. Thanks Avatar Manager, sorry
to leave you; it was great whilst it lasted! Cheers, Marjoline

![](https://secure.gravatar.com/avatar/cc02631d6b15bd41eeca91f4ef089c815f847849df0c6d3ecd5459e92858d9f5?
s=60&d=retro&r=g)

### 󠀁[Very useful plugin, thank you!](https://wordpress.org/support/topic/very-useful-plugin-thank-you-7/)󠁿

 [fiftin](https://profiles.wordpress.org/fiftin/) 2021 年 7 月 30 日

Very useful plugin, thank you!

![](https://secure.gravatar.com/avatar/efa53fc62001c5d5dbf912bcc69220a1569399e46d599d59135e6caaecdcfd7e?
s=60&d=retro&r=g)

### 󠀁[Excellent plugin](https://wordpress.org/support/topic/excellent-plugin-7198/)󠁿

 [newsblaze](https://profiles.wordpress.org/newsblaze/) 2021 年 6 月 30 日

This is an excellent plugin. I use it on all of my sites that have posts that show
the author. It is magic! Thank you to all who contributed. P.S. I love the octopus
logo.

![](https://secure.gravatar.com/avatar/2f2ed81298ea658faa14221fffc3cc5846a95bc3be01e37c07fb6f3056f94b4c?
s=60&d=retro&r=g)

### 󠀁[Not all features work.](https://wordpress.org/support/topic/not-all-features-work-2/)󠁿

 [rockethead2](https://profiles.wordpress.org/rockethead2/) 2020 年 1 月 28 日 2
回复

We are able to add avatar in user edit screen, but there are no options on Settings
> Discussion page so you might want to fix that. Def nice to have option of not 
using Gravatar, which no longer works.

![](https://secure.gravatar.com/avatar/eee571a58a5889c9f435e8bfd38fc6beb12359864a4bbdfe02ea066100a86bfa?
s=60&d=retro&r=g)

### 󠀁[Great!](https://wordpress.org/support/topic/great-9604/)󠁿

 [wndrlstuser](https://profiles.wordpress.org/wndrlstuser/) 2019 年 4 月 22 日

Thanks for this plugin. Very helpful!

 [ 阅读所有40条评价 ](https://wordpress.org/support/plugin/avatar-manager/reviews/)

## 贡献者及开发者

「Avatar Manager」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ Cătălin Dogaru ](https://profiles.wordpress.org/cdog/)

「Avatar Manager」插件已被翻译至 11 种本地化语言。 感谢[所有译者](https://translate.wordpress.org/projects/wp-plugins/avatar-manager/contributors)
为本插件所做的贡献。

[帮助将「Avatar Manager」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/avatar-manager)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/avatar-manager/)，查看
[SVN仓库](https://plugins.svn.wordpress.org/avatar-manager/)，或通过[RSS](https://plugins.trac.wordpress.org/log/avatar-manager/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/avatar-manager/)。

## 更新日志

#### 1.6.1

 * Updated minified files.
 * Grunt tasks.
 * Mexican Spanish localization.
 * Minor bug fixes.

#### 1.6.0

 * Media Library support.
 * Action and filter hooks.
 * Brazilian Portuguese localization.
 * French localization.
 * Major bug fixes.

#### 1.5.1

 * Minified script files.
 * Minor bug fixes.

#### 1.5.0

 * Multisite support.
 * Dutch localization.
 * Afrikaans localization.

#### 1.4.0

 * Front-end support.
 * Russian localization.
 * Minor bug fixes.

#### 1.3.0

 * XML-RPC support.
 * Minor bug fixes.

#### 1.2.2

 * Minor bug fixes.

#### 1.2.1

 * Action and filter hooks.

#### 1.2.0

 * Media states.

#### 1.1.0

 * Romanian localization.
 * Minor bug fixes.

#### 1.0.0

 * Initial release.

## 额外信息

 *  版本 **1.6.1**
 *  最后更新：**5 年前**
 *  活跃安装数量 **5,000+**
 *  WordPress 版本 ** 3.5 或更高版本 **
 *  已测试的最高版本为 **5.6.17**
 *  语言
 * [Danish](https://da.wordpress.org/plugins/avatar-manager/) 、 [Dutch](https://nl.wordpress.org/plugins/avatar-manager/)、
   [English (US)](https://wordpress.org/plugins/avatar-manager/) 、 [Italian](https://it.wordpress.org/plugins/avatar-manager/)、
   [Spanish (Chile)](https://cl.wordpress.org/plugins/avatar-manager/) 、 [Spanish (Colombia)](https://es-co.wordpress.org/plugins/avatar-manager/)、
   [Spanish (Ecuador)](https://es-ec.wordpress.org/plugins/avatar-manager/) 、 [Spanish (Mexico)](https://es-mx.wordpress.org/plugins/avatar-manager/)、
   [Spanish (Spain)](https://es.wordpress.org/plugins/avatar-manager/) 、 [Spanish (Venezuela)](https://ve.wordpress.org/plugins/avatar-manager/)、
   [Swedish](https://sv.wordpress.org/plugins/avatar-manager/) 和 [Ukrainian](https://uk.wordpress.org/plugins/avatar-manager/).
 *  [翻译成简体中文](https://translate.wordpress.org/projects/wp-plugins/avatar-manager)
 * 标签
 * [avatars](https://cn.wordpress.org/plugins/tags/avatars/)[gravatar](https://cn.wordpress.org/plugins/tags/gravatar/)
   [profile](https://cn.wordpress.org/plugins/tags/profile/)[users](https://cn.wordpress.org/plugins/tags/users/)
   [xml-rpc](https://cn.wordpress.org/plugins/tags/xml-rpc/)
 *  [高级视图](https://cn.wordpress.org/plugins/avatar-manager/advanced/)

## 评级

 4.9 星（最高 5 星）。

 *  [  36 条 5 星评价     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=5)
 *  [  1 条 4 星评价     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=4)
 *  [  2 条 3 星评价     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/avatar-manager/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/avatar-manager/reviews/)

## 贡献者

 *   [ Cătălin Dogaru ](https://profiles.wordpress.org/cdog/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/avatar-manager/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SMKJZHX7G3VQS)