Avatar Manager for WordPress is a sweet and simple plugin for storing avatars locally and more. Easily.
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.
Want to support this project for continued development and freely available for everyone? Here’s how you can help preserve Avatar Manager:
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.
Thank you for choosing to contribute to Avatar Manager!
Have a bug or a feature request? Please open a new issue. Before opening any issue, please search for existing issues and read the Issue Guidelines, written by Nicolas Gallagher. Please submit all pull requests against development branches.
Find out how Avatar Manager it’s made on Tuts+ Code.
Cătălin Dogaru
Avatar Manager is brought to you by these fine folks.
Artem Frolov,
Brice Capobianco,
Guy Steyaert,
Johan Steen,
Lucas Uzan,
Mateus Neves,
Maura Montero D.,
Pieter Goosen,
Samantha Muthiah,
Snowboard Mommy
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.
Installation is simple as peas.
Avatar Manager options under the Settings Discussion Screen.
Avatar Manager options under the Users Your Profile Screen.
Avatar Manager options under the Users Your Profile Screen.
Yes, you can choose between your Gravatar and your custom avatar under the Users Your Profile Screen.
Yes, you can choose a rating for your custom avatar under the Users Your Profile Screen.
Yes, you can enable this feature under the Settings Discussion Screen.
Yes, you can add the self-hosted avatars to your template files by using the WordPress built-in get_avatar()
function to retrieve the avatar for a user who provided a user ID or email address.
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 and select your new avatar from the list.