rest_get_avatar_urls( mixed $id_or_email ): (string|false)[]

Retrieves the avatar URLs in various sizes.


Description

Top ↑

See also


Top ↑

Parameters

$id_or_email mixed Required
The avatar to retrieve a URL for. Accepts a user ID, Gravatar MD5 hash, user email, WP_User object, WP_Post object, or WP_Comment object.

Top ↑

Return

(string|false)[] Avatar URLs keyed by size. Each value can be a URL string or boolean false.


Top ↑

Source

File: wp-includes/rest-api.php. View all references

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;
}


Top ↑

Changelog

Changelog
Version Description
4.7.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.