rest_get_avatar_urls
函数
rest_get_avatar_urls ( $id_or_email )
- 参数
-
-
(mixed)
$id_or_email
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.- Required: 是
-
(mixed)
- 返回值
-
- ((string|false)[]) Avatar URLs keyed by size. Each value can be a URL string or boolean false.
- 相关
-
- get_avatar_url()
- 定义位置
-
-
wp-includes/rest-api.php
, line 1212
-
wp-includes/rest-api.php
- 引入
- 4.7.0
- 弃用
- –
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; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。