Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_user_query

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
277            * Filters WP_User_Query arguments when querying users via the REST API.
278            *
279            * @link https://developer.wordpress.org/reference/classes/wp_user_query/
280            *
281            * @since 4.7.0
282            *
283            * @param array           $prepared_args Array of arguments for WP_User_Query.
284            * @param WP_REST_Request $request       The current request.
285            */
286           $prepared_args = apply_filters( 'rest_user_query', $prepared_args, $request );
287
288           $query = new WP_User_Query( $prepared_args );
289
290           $users = array();
291
292           foreach ( $query->results as $user ) {
293                $data = $this->prepare_item_for_response( $user, $request );
294                $users[] = $this->prepare_response_for_collection( $data );
295           }