Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_user_collection_params

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
1429            *
1430            * This filter registers the collection parameter, but does not map the
1431            * collection parameter to an internal WP_User_Query parameter.  Use the
1432            * `rest_user_query` filter to set WP_User_Query arguments.
1433            *
1434            * @since 4.7.0
1435            *
1436            * @param array $query_params JSON Schema-formatted collection parameters.
1437            */
1438           return apply_filters( 'rest_user_collection_params', $query_params );
1439      }
1440 }
1441