rest_avatar_sizes
Filters the REST avatar sizes.
Use this filter to adjust the array of sizes returned by the rest_get_avatar_sizes function.
Использование
add_filter( 'rest_avatar_sizes', 'wp_kama_rest_avatar_sizes_filter' ); /** * Function for `rest_avatar_sizes` filter-hook. * * @param int[] $sizes An array of int values that are the pixel sizes for avatars. * * @return int[] */ function wp_kama_rest_avatar_sizes_filter( $sizes ){ // filter... return $sizes; }
- $sizes(int[])
- An array of int values that are the pixel sizes for avatars.
По умолчанию: [ 24, 48, 96 ]
Список изменений
С версии 4.4.0 | Введена. |
Где вызывается хук
rest_avatar_sizes
wp-includes/rest-api.php 1272
return apply_filters( 'rest_avatar_sizes', array( 24, 48, 96 ) );