Plugin hau ez da probatu WordPressen azken 3 bertsio garrantzitsuenekin. Baliteke, jada, mantentze edo euskarririk ez izatea, eta, WordPressen bertsio berriagoekin erabiltzen denean, bateragarritasun arazoak izan ditzake.

Easy Author Image

Deskripzioa

Easy Author Image gives you the option do you exactly that — easily add an author image to your profile page. Once you install this plugin, you’ll have a new option in the Your Profile tab (under Users) called Profile Picture, complete with a media uploader box that allows you to upload your very own author picture.

Whether you call it an avatar, an author image, or an author picture, Easy Author Image is a “Works Out Of The Box (WOOT-B)” solution to a common problem.

How does it work?

Once you update your profile, your new profile picture will replace every instance of where a Gravatar would normally show up. For every user on your blog (including you), the plugin will first check for an Easy Author Image profile picture and display that. If you or one of your users have not set your profile picture (common on blogs with many users, or with users who prefer to use Gravatar), the plugin defaults to the user’s Gravatar.

Plugin Support

Reach out to me via GitHub or email (jesselawson at protonmail dot com).

If you use this plugin and enjoy it, please consider rating it. It only takes a second.

Thank you everyone who has downloaded this so far.

Pantaila-argazkiak

  • Step 1 Navigate to Your Profile.
  • Step 2 The new Profile Picture field on your authors' profile pages. Click on that button that says "Upload new author profile picture." Don't worry -- in addition to uploading a new picture, you can also select an image from a URL or one already uploaded to your Media Gallery.
  • Step 3 As you can see, it uses the same Media Uploader as your Media Library does. Find a picture you want to use as your author profile picture.
  • Step 4 Click on this button once your image is uploaded/selected.
  • Step 5 Update your profile!
  • Step 6 Once your profile has been updated, revel in the fantasticity of your selection.

Instalazioa

  1. Download the plugin from the plugin directory.
  2. Navigate to Plugins, then click on Add New.
  3. Click on Upload.
  4. Find the file you downloaded (easy-author-image.zip) and upload it.
  5. Activate the plugin through the ‘Plugins’ menu in WordPress
  6. Go to Users->Your Profile and get started! If you have multiple users, they all can log in and upload an image, too.

MEG

How exactly do I get started?
  • Go to Users->Your Profile.
  • Find the new Profile Picture section.
  • Click on the button that says “Upload New Author Profile Image”
  • Use the media uploader to either Upload a new picture, Link to a URL of a picture, or select an image from your Media Gallery.
  • Click on the picture you want to use and then click on the button at the bottom of the media uploader that says “Make this my author profile picture!”
  • IMPORTANT: You MUST save the changes by clicking the Update Profile button at the bottom of Your Profile. If you don’t update your profile your author image will not be uploaded/changed.
I selected an author image but I don’t see it in the preview. What happened?

You forgot to save your profile after you uploaded the picture. Go back and reupload or reselect your author image and then once you click on the Make This My Author Profile Picture button, click on the blue Update Profile button at the bottom of your profile page.

How do I display an author’s image?

Easy Author Image comes with a function that will return the url of the author’s image. The function is called get_author_image_url().

If you want to display the author image in the loop, do something like this:

$avatar = get_author_image_url(); // The function uses get_the_ID() to grab the appropirate user ID for the author image.
$name = get_the_author_meta('display_name');
$html = '<img src="$avatar" alt="A Picture of $name"/>';
echo $html;

If you want to display the author image somewhere not in the loop, do something like this:

$avatar = get_author_image_url('123'); // Replace 123 with the id of the author you want to use
$name = get_the_author_meta('display_name');
$html = '<img src="$avatar" alt="A Picture of $name"/>';
echo $html;

Since Easy Author Image adds a new custom field to the user profile, you can also use WordPress’s internal functionality to retrieve the author image url as well:

$url = get_the_author_meta('author_profile_picture', $user_id);
Does it matter what size the image is?

This plugin only deals with uploading and retrieving the image. It’s up to you to format it appropriately to your theme.

I get it. So the get_author_image_url() function is basically just a pre-formatted call to get_the_author_meta(‘author_profile_picture’, $user_id), right?

Correct!

I have a multi-author blog and some people want to continue using their Gravatars. What should I do?

Nothing! Easy Author Image automagically defaults back to the Gravatar associated with the user’s email address if no profile picture is uploaded.

Berrikuspenak

2020(e)ko urtarrilaren 23(a)
The aspect ratio does not change well, everything must be done manually
2019(e)ko azaroaren 15(a)
Flawless execution, profile photo works perfectly, very easy to add in the User Profile page. It shows up now wherever the author is listed. SO EASY. Thank you, thank you!
2019(e)ko maiatzaren 15(a)
Plugin provides nice interface to add author photo, we have a ton on our site so it helps a lot. We had a hiccup on our site where we couldn't add new author images for some reason. Author was able to quickly identify the kink we had and personally fixed.
2016(e)ko irailaren 3(a)
The plugin doesn't work anymore. You can still set a user profile image, but it no longer gets used by Wordpress on blog posts.
2016(e)ko irailaren 3(a)
It seems to work, except it cuts off the left edge of the author bio. Not sure how to fix that, but if I can't then I won't be able to use it. Anyone have any ideas?
Irakurri 18 berrikuspenak

Laguntzaileak eta Garatzaileak

“Easy Author Image” software librea da. Ondoko pertsonek egin dizkiote ekarpenak plugin honi.

Laguntzaileak

Aldaketen loga

1.7

  • Repackage as new update after JQuery fixes so that everyone’s version can update appropriately.

1.6

  • Fixed JQuery issue with blank page after uploading author image. Special thanks to Jon at MakingMusicMag.com for helping with this!

1.5.1

  • Removed alt tag with gravatar email address from gravatar img tag.

1.5

  • Fixed JQuery function bug from 1.4 update!

1.4

  • Big thanks to Chris McBride (Devonto.com) for the following 1.4 updates: Show an empty box when no image uploaded; Display the uploaded image when selected; Display the success message in red; Show a “delete” button to be able to remove the image
  • Added js strengthening for header redirects
  • Cleaned up code and added minified version of parts that could use it

1.3

  • Added Vladimir’s (Pixel Industry) updated get_easy_author_image() handling of user_id. Previously the plugin was only using the email address. Now users can use a standardized way to fetch the avatar (sans get_author_image_url), and if you deactivate the plugin, you won’t see any problems (because there is no dependency on get_author_image_url). Thanks, Vladimir!
  • Removed old dependencies on dated JS files (and updated JS files to match plugin).

1.2

  • Updated depreciated update_usermeta to update_user_meta on line 121.
  • Added the ability for admin to upload/update other users’ easy author images.

1.1

  • Made Easy Author Image default back to Gravatar if an author chose not to use it.

1.0

  • Released.