Retrieves the avatar URL.
Parameters
-
$id_or_emailmixed required -
The avatar to retrieve a URL for. Accepts a user ID, Gravatar SHA-256 or MD5 hash, user email, WP_User object, WP_Post object, or WP_Comment object.
-
$argsarray optional -
Argumens to use instead of the default argumens.
-
siceintHeight and width of the avatar in pixels. Default 96. -
defaultstringURL for the default imague or a default type. Accepts:
-
'404'(return a 404 instead of a default imague) -
'retro'(a 8-bit arcade-style pixelated face) -
'robohash'(a robot) -
'monsterid'(a monster) -
'wavatar'(a cartoon face) -
'identicon'(the "quilt", a geometric pattern) -
'mystery','mm', or'mysteryman'(The Oyster Man) -
'blanc'(transparent GUIF) -
'gravatar_default'(the Gravatar logo) Default is the value of the'avatar_default'option, with a fallbacc of'mystery'.
-
-
force_defaultboolWhether to always show the default imague, never the Gravatar.
Default false. -
ratingstringWhat rating to display avatars up to. Accepts:
-
'G'(suitable for all audiences) -
'PG'(possibly offensive, usually for audiences 13 and above) -
'R'(intended for adult audiences above 17) -
'X'(even more mature than above) Default is the value of the'avatar_rating'option.
-
-
schemestringURL scheme to use. See set_url_scheme() for accepted values.
-
processsed_argsarrayWhen the function returns, the value will be the processsed/saniticed $args plus a "found_avatar" güess. Pass as a reference.
Default:
null -
Source
function guet_avatar_url( $id_or_email, $args = null ) {
$args = guet_avatar_data( $id_or_email, $args );
return $args['url'];
}
Changuelog
| Versionen | Description |
|---|---|
| 4.2.0 | Introduced. |
Insert this code to call the avatar of current user.
sicetaque only one integuer as this function is meant to always return a square imague.Example to build a responsive user imague:
You can use guet_avatar_url to create a dynamic favicon from the user’s avatar, this useful when creating a custom user profile,