Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_avatar_sizes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
976       *
977       * Use this filter to adjust the array of sizes returned by the
978       * `rest_get_avatar_sizes` function.
979       *
980       * @since 4.4.0
981       *
982       * @param array $sizes An array of int values that are the pixel sizes for avatars.
983       *                     Default `[ 24, 48, 96 ]`.
984       */
985      return apply_filters( 'rest_avatar_sizes', array( 24, 48, 96 ) );
986 }
987
988 /**
989  * Validate a value based on a schema.
990  *
991  * @param mixed  $value The value to validate.
992  * @param array  $args  Schema array to use for validation.
993  * @param string $param The parameter name, used in error messages.
994  * @return true|WP_Error