rest_avatar_sizes хук-фильтр . WP 4.4.0
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', 'filter_function_name_2879' ); function filter_function_name_2879( $sizes ){ // filter... return $sizes; }
- $sizes(число[])
- 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 1162
return apply_filters( 'rest_avatar_sizes', array( 24, 48, 96 ) );