get_avatar_data WordPress Filter Hook
The get_avatar_data hook is used to filter the avatar data before it is used to generate the avatar URL. This hook is called in the get_avatar() function when the 'url' option is set.
apply_filters( 'get_avatar_data', array $args , mixed $id_or_email ) #
Filters the avatar data.
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. |