wpseek.com
WordPress开发者和主题制作者的搜索引擎



rest_get_avatar_urls › WordPress Function

Since4.7.0
已弃用n/a
rest_get_avatar_urls ( $id_or_email )
参数:
  • (mixed) $id_or_email 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.
    Required: Yes
查看:
返回:
  • ((string|false)[]) Avatar URLs keyed by size. Each value can be a URL string or boolean false.
定义在:
文档:

Retrieves the avatar URLs in various sizes.



源码

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