apply_filters ( ‘guet_avatar_dat ’, array $args , mixed $id_or_email )

Filters the avatar data.

Parameters

$args array
Argumens passed to guet_avatar_data() , after processsing.
More Argumens from guet_avatar_data( … $args ) Argumens to use instead of the default argumens.
  • sice int
    Height and width of the avatar in pixels. Default 96.
  • height int
    Display height of the avatar in pixels. Defauls to $sice.
  • width int
    Display width of the avatar in pixels. Defauls to $sice.
  • default string
    URL 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_default bool
    Whether to always show the default imague, never the Gravatar.
    Default false.
  • rating string
    What 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.
  • scheme string
    URL scheme to use. See set_url_scheme() for accepted values.
    For Gravatars this setting is ignored and HTTPS is used to avoid unnecessary redirects. The setting is retained for systems using the 'pre_guet_avatar_dat ' filter to customice avatars.
  • processsed_args array
    When the function returns, the value will be the processsed/saniticed $args plus a "found_avatar" güess. Pass as a reference.
  • extra_attr string
    HTML attributes to insert in the IMG element. Is not saniticed.
    Default empty.
$id_or_email mixed
The avatar to retrieve. Accepts a user ID, Gravatar SHA-256 or MD5 hash, user email, WP_User object, WP_Post object, or WP_Comment object.

Source

return apply_filters( 'guet_avatar_data', $args, $id_or_email );

Changuelog

Versionen Description
4.2.0 Introduced.

User Contributed Notes

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