Uses
Uses | Description |
---|---|
wp-includes/rest-api.php: rest_get_avatar_sizes() | Retrieves the pixel sizes for avatars. |
wp-includes/link-template.php: get_avatar_url() | Retrieves the avatar URL. |
Retrieves the avatar urls in various sizes.
(mixed) (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.
(array) Avatar URLs keyed by size. Each value can be a URL string or boolean false.
File: wp-includes/rest-api.php
function rest_get_avatar_urls( $id_or_email ) { $avatar_sizes = rest_get_avatar_sizes(); $urls = array(); foreach ( $avatar_sizes as $size ) { $urls[ $size ] = get_avatar_url( $id_or_email, array( 'size' => $size ) ); } return $urls; }
Version | Description |
---|---|
4.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/rest_get_avatar_urls