apply_filters( 'get_avatar_url', string $url , mixed $id_or_email , array $args )
Filters the avatar URL.
Parameters
- $url
-
(string) The URL of the avatar.
- $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.
- $args
-
(array) Arguments passed to get_avatar_data(), after processing.
Source
Changelog
Version | Description |
---|---|
4.2.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Below is a basic example to return the avatar as a placeholder image.
Top ↑
Feedback
Use the `default` parameter in the `$args` array to specify a default image. See `get_avatar_data()` documentation. — By crstauf —