rest_get_avatar_urls( mixed $id_or_email )
Retrieves the avatar urls in various sizes.
Description
See also
Parameters
- $id_or_email
-
(Required) The Gravatar to retrieve a URL for. Accepts a user_id, gravatar md5 hash, user email, WP_User object, WP_Post object, or WP_Comment object.
Return
((string|false)[]) Avatar URLs keyed by size. Each value can be a URL string or boolean false.
Source
File: wp-includes/rest-api.php
function rest_get_avatar_urls( $email ) {
$avatar_sizes = rest_get_avatar_sizes();
$urls = array();
foreach ( $avatar_sizes as $size ) {
$urls[ $size ] = get_avatar_url( $email, array( 'size' => $size ) );
}
return $urls;
}
Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |