Title: Avatar Manager
Author: Cătălin Dogaru
Published: <strong>29 janeiro, 2013</strong>
Last modified: 2 fevereiro, 2021

---

Pesquisar plugins

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

Este plugin **não foi testado com os 3 lançamentos principais mais recentes do WordPress**.
Ele pode não ser mais mantido ou suportado e pode ter problemas de compatibilidade
quando usado com versões mais recentes do WordPress.

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

# Avatar Manager

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

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

 * [Detalhes](https://br.wordpress.org/plugins/avatar-manager/#description)
 * [Avaliações](https://br.wordpress.org/plugins/avatar-manager/#reviews)
 *  [Instalação](https://br.wordpress.org/plugins/avatar-manager/#installation)
 * [Desenvolvimento](https://br.wordpress.org/plugins/avatar-manager/#developers)

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

## Descrição

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!_

#### Contribuindo

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

#### Contribuintes

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.

## Capturas de tela

[⌊Avatar Manager options under the Settings Discussion Screen.⌉⌊Avatar Manager options
under the Settings Discussion Screen.⌉[

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

[⌊Avatar Manager options under the Users Your Profile Screen.⌉⌊Avatar Manager options
under the Users Your Profile 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.⌉⌊Avatar Manager options
under the Users Your Profile Screen.⌉[

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

## Instalação

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!

## Perguntas frequentes

### 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.

## Avaliações

![](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/) 20 dezembro, 2023

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/) 17 agosto, 2021 6 respostas

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/) 30 julho, 2021

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/) 30 junho, 2021

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/) 28 janeiro, 2020 2 respostas

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/) 22 abril, 2019

Thanks for this plugin. Very helpful!

 [ Leia todas as 40 avaliações ](https://wordpress.org/support/plugin/avatar-manager/reviews/)

## Colaboradores e desenvolvedores

“Avatar Manager” é um programa de código aberto. As seguintes pessoas contribuíram
para este plugin.

Colaboradores

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

Avatar Manager” foi traduzido para 11 localidades. Agradecemos aos [tradutores](https://translate.wordpress.org/projects/wp-plugins/avatar-manager/contributors)
por suas contribuições.

[Traduzir o “Avatar Manager” para seu idioma.](https://translate.wordpress.org/projects/wp-plugins/avatar-manager)

### Interessado no desenvolvimento?

[Navegue pelo código](https://plugins.trac.wordpress.org/browser/avatar-manager/),
consulte o [repositório SVN](https://plugins.svn.wordpress.org/avatar-manager/) 
ou assine o [registro de desenvolvimento](https://plugins.trac.wordpress.org/log/avatar-manager/)
por [RSS](https://plugins.trac.wordpress.org/log/avatar-manager/?limit=100&mode=stop_on_copy&format=rss).

## Registro de alterações

#### 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.

## Meta

 *  Versão **1.6.1**
 *  Última atualização **5 anos atrás**
 *  Instalações ativas **5.000+**
 *  Versão do WordPress ** 3.5 ou superior **
 *  Testado até **5.6.17**
 *  Idiomas
 * [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/) e [Ukrainian](https://uk.wordpress.org/plugins/avatar-manager/).
 *  [Traduzir para seu idioma](https://translate.wordpress.org/projects/wp-plugins/avatar-manager)
 * Tags
 * [avatars](https://br.wordpress.org/plugins/tags/avatars/)[gravatar](https://br.wordpress.org/plugins/tags/gravatar/)
   [profile](https://br.wordpress.org/plugins/tags/profile/)[users](https://br.wordpress.org/plugins/tags/users/)
   [xml-rpc](https://br.wordpress.org/plugins/tags/xml-rpc/)
 *  [Visualização avançada](https://br.wordpress.org/plugins/avatar-manager/advanced/)

## Classificações

 4.9 de 5 estrelas.

 *  [  36 avaliações com 5 estrelas     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=5)
 *  [  1 avaliação com 4 estrela     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=4)
 *  [  2 avaliações com 3 estrelas     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=3)
 *  [  0 avaliação com 2 estrela     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=2)
 *  [  0 avaliação com 1 estrela     ](https://wordpress.org/support/plugin/avatar-manager/reviews/?filter=1)

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

[Ver todas avaliações](https://wordpress.org/support/plugin/avatar-manager/reviews/)

## Colaboradores

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

## Suporte

Tem algo a dizer? Precisa de ajuda?

 [Ver fórum de suporte](https://wordpress.org/support/plugin/avatar-manager/)

## Doar

Gostaria de contribuir para o desenvolvimento deste plugin?

 [ Doe para este plugin ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SMKJZHX7G3VQS)