apply_filters( 'pre_get_avatar_data', array $args , mixed $id_or_email )
Filters whether to retrieve the avatar URL early.
Description
Passing a non-null value in the ‘url’ member of the return array will effectively short circuit get_avatar_data(), passing the value through the ‘get_avatar_data’ filter and returning early.
Parameters
- $args
-
(array) Arguments passed to get_avatar_data(), after processing.
- $id_or_email
-
(mixed) The Gravatar to retrieve. Accepts a user ID, Gravatar MD5 hash, user email, WP_User object, WP_Post object, or WP_Comment object.
Source
Changelog
Version | Description |
---|---|
4.2.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Can be used to display an image from your media library for a specific user to prevent requests to Gravatar and speed things up.
Be sure to replace “author_email_to_check”, “author_id_to_check” and “attachment_id_to_display” to their corresponding values.