wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
rest_get_avatar_sizes › WordPress Function
Seit4.7.0
Veraltetn/v
› rest_get_avatar_sizes ( Keine Parameter )
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Retrieves the pixel sizes for avatars.
Ähnliche Funktionen: rest_get_avatar_urls, get_avatar, get_avatar_url, get_avatar_data, rest_get_server
Quellcode
function rest_get_avatar_sizes() {
/**
* Filters the REST avatar sizes.
*
* Use this filter to adjust the array of sizes returned by the
* `rest_get_avatar_sizes` function.
*
* @since 4.4.0
*
* @param int[] $sizes An array of int values that are the pixel sizes for avatars.
* Default `[ 24, 48, 96 ]`.
*/
return apply_filters( 'rest_avatar_sizes', array( 24, 48, 96 ) );
}