User Avatar - Reloaded
Use any image from your WordPress Media Library as a custom user avatar or user profile picture. Add your own Default Avatar.
Next Milestone 2K
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| gravatar | 12 | — | Tag | 17 hours ago |
| author-photo | 15 | — | Tag | 17 hours ago |
| avatar | 19 | — | Tag | 17 hours ago |
| user profile | 59 | — | Tag | 17 hours ago |
| author-image | 86 | — | Tag | 17 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.2.2
- Last Updated
- Sep 14, 2023
- Requires WP
- 4.0+
- Tested Up To
- 6.3
- PHP Version
- 5.6 or higher
- Author
- saadiqbal
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 2
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about User Avatar - Reloaded
Allows you to use the values “original", “large", “medium", or “thumbnail" for your avatar size.
Doesn’t add a fixed width and height to the image if you use the aforementioned values. This will give you more flexibility to resize the image with CSS.
Allows you to use custom image sizes registered with add_image_size (fixed width and height are added to the image).
Optionally adds CSS classes “alignleft", “alignright", or “aligncenter" to position your avatar.
Shows nothing if the user has no WP User Avatar image.
Shows the user’s Gravatar avatar or Default Avatar only if “Show Avatars" is enabled in your WP User Avatar settings.
get_avatar
Requires you to enable “Show Avatars" in your WP User Avatar settings to show any avatars.
Accepts only numeric values for your avatar size.
Always adds a fixed width and height to your image. This may cause problems if you use responsive CSS in your theme.
Shows the user’s Gravatar avatar or Default Avatar if the user doesn’t have a WP User Avatar image. (Choosing “Blank" as your Default Avatar still generates a transparent image file.)
Requires no changes to your theme files if you are currently using get_avatar.
Read more about get_avatar in the WordPress Function Reference.
Can I create a custom Default Avatar?
In your WP User Avatar settings, you can upload your own Default Avatar.
Can I disable all Gravatar avatars?
In your WP User Avatar settings, you can select “Disable Gravatar — Use only local avatars" to disable all Gravatar avatars on your site and replace them with your Default Avatar. This will affect your registered users and non-registered comment authors.
Can Contributors or Subscribers choose their own WP User Avatar image?
Yes, if you enable “Allow Contributors & Subscribers to upload avatars" in the WP User Avatar settings. These users will see a slightly different interface because they are allowed only one image upload.
Will WP User Avatar work with comment author avatars?
Yes, for registered users. Non-registered comment authors will show their Gravatar avatars or Default Avatar.
Will WP User Avatar work with bbPress?
Yes!
Will WP User Avatar work with BuddyPress?
No, BuddyPress has its own custom avatar functions and WP User Avatar will override only some of them. It’s best to use BuddyPress without WP User Avatar.
How can I see which users have an avatar?
For Administrators, WP User Avatar adds a column with avatar thumbnails to your Users list table. If “Show Avatars" is enabled in your WP User Avatar settings, you will see avatars to the left of each username instead of in a new column.
Can I use the WP User Avatar uploader in a front page or widget?
Yes, you can use the [avatar_upload] shortcode to put a standalone uploader in a front page or widget. This uploader is only visible to logged-in users. If you want to integrate the uploader into a profile edit page, see Other Notes.
You can specify a user with the shortcode, but you must have 'edit_user' capability to change the user’s avatar.
[avatar_upload user="admin"]
Can I insert WP User Avatar directly into a post?
You can use the [avatar] shortcode in your posts. It will detect the author of the post or you can specify an author by username. You can specify a size, alignment, and link, but they are optional. For links, you can link to the original image file, attachment page, or a custom URL.
[avatar user="admin" size="96" align="left" link="file" /]
If you have a caption, the output will be similar to how WordPress adds captions to other images.
[avatar user="admin" size="96" align="left" link="file"]Photo Credit: Your Name[/avatar]
Note:If you are using one shortcode without a caption and another shortcode with a caption on the same page, you must close the caption-less shortcode with a forward slash before the closing bracket: [avatar /] instead of [avatar].
What CSS can I use with WP User Avatar?
WP User Avatar will add the CSS classes “wp-user-avatar" and “wp-user-avatar-{size}" to your image. If you add an alignment, the corresponding alignment class will be added:
<?php echo get_wp_user_avatar($user_id, 96, 'left'); ?>
Note “alignleft", “alignright", and aligncenter" are common WordPress CSS classes, but not every theme supports them. Contact the theme author to add those CSS classes.
If you use the values “original", “large", “medium", or “thumbnail", no width or height will be added to the image. This will give you more flexibility to resize the image with CSS:
<?php echo get_wp_user_avatar($user_id, 'medium'); ?>
Note: WordPress adds more CSS classes to the avatar not listed here.
If you use the [avatar] shortcode, WP User Avatar will add the CSS class “wp-user-avatar-link" to the link. It will also add CSS classes based on link type.
Image File: wp-user-avatar-file
Attachment: wp-user-avatar-attachment
Custom URL: wp-user-avatar-custom
[avatar user="admin" size="96″ align="left" link="attachment" /]
has_wp_user_avatar: checks if the user has a WP User Avatar image
See example usage here