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

---

Søk i utvidelser

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

Denne utvidelsen **har ikke blitt testet mot noen av de siste 3 hovedutgivelsene
av WordPress**. Den er kanskje ikke lenger holdt vedlike eller støttet, og den kan
ha kompatibilitetsproblemer med nyeste versjoner av WordPress.

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

# Avatar Manager

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

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

 * [Detaljer](https://nb.wordpress.org/plugins/avatar-manager/#description)
 * [Omtaler](https://nb.wordpress.org/plugins/avatar-manager/#reviews)
 *  [Installering](https://nb.wordpress.org/plugins/avatar-manager/#installation)
 * [Utvikling](https://nb.wordpress.org/plugins/avatar-manager/#developers)

 [Brukerstøtte](https://wordpress.org/support/plugin/avatar-manager/)

## Beskrivelse

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

#### Bidragsytere

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.

## Skjermbilder

 * [[
 * 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).

## Installasjon

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!

## Ofte stilte spørsmål

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

## Vurderinger

![](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. desember, 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. august, 2021 6 svar

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. juli, 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. juni, 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. januar, 2020 2 svar

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. april, 2019

Thanks for this plugin. Very helpful!

 [ Les alle 40 vurderinger ](https://wordpress.org/support/plugin/avatar-manager/reviews/)

## Bidragsytere og utviklere

«Avatar Manager» er programvare med åpen kildekode. Følgende personer har bidratt
til denne utvidelsen:

Bidragsytere

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

“Avatar Manager” har blitt oversatt til 11 språk. Takk til [oversetterne](https://translate.wordpress.org/projects/wp-plugins/avatar-manager/contributors)
for deres bidrag.

[Oversett “Avatar Manager” til ditt språk.](https://translate.wordpress.org/projects/wp-plugins/avatar-manager)

### Interessert i utvikling?

[Bla gjennom koden](https://plugins.trac.wordpress.org/browser/avatar-manager/),
sjekk ut [SVN-repositoriet](https://plugins.svn.wordpress.org/avatar-manager/), 
eller abonner på [utviklingsloggen](https://plugins.trac.wordpress.org/log/avatar-manager/)
med [RSS](https://plugins.trac.wordpress.org/log/avatar-manager/?limit=100&mode=stop_on_copy&format=rss).

## Endringslogg

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

 *  Versjon **1.6.1**
 *  Sist oppdatert **5 år siden**
 *  Aktive installasjoner **6 000+**
 *  WordPress-versjon ** 3.5 eller nyere **
 *  Testet opp til **5.6.17**
 *  Språk
 * [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/) og [Ukrainian](https://uk.wordpress.org/plugins/avatar-manager/).
 *  [Oversett til ditt språk](https://translate.wordpress.org/projects/wp-plugins/avatar-manager)
 * Stikkord
 * [avatars](https://nb.wordpress.org/plugins/tags/avatars/)[gravatar](https://nb.wordpress.org/plugins/tags/gravatar/)
   [profile](https://nb.wordpress.org/plugins/tags/profile/)[users](https://nb.wordpress.org/plugins/tags/users/)
   [xml-rpc](https://nb.wordpress.org/plugins/tags/xml-rpc/)
 *  [Avansert visning](https://nb.wordpress.org/plugins/avatar-manager/advanced/)

## Vurderinger

 4.9 av 5 stjerner.

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

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

[Se alle omtalene](https://wordpress.org/support/plugin/avatar-manager/reviews/)

## Bidragsytere

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

## Brukerstøtte

Har du noe å si? Trenger du hjelp?

 [Vis brukerstøtteforumet](https://wordpress.org/support/plugin/avatar-manager/)

## Donér

Vil du støtte videreutviklingen av denne utvidelsen?

 [ Doner til denne utvidelsen ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SMKJZHX7G3VQS)