apply_filters( ‘rest_avatar_sizes’, int[] $sizes )

In this article

Filters the REST avatar sizes.

Description

Use this filter to adjust the array of sizes returned by the rest_get_avatar_sizes function.

Parameters

$sizesint[]
An array of int values that are the pixel sizes for avatars.
Default [ 24, 48, 96 ].

Source

return apply_filters( 'rest_avatar_sizes', array( 24, 48, 96 ) );

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

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