users_pre_query WordPress Filter Hook

The users_pre_query hook is triggered before a user query is run. It allows you to modify the user query arguments before the query is run. This can be useful for customizing the user query results.

apply_filters_ref_array( 'users_pre_query', array|null $results, WP_User_Query $query ) #

Filters the users array before the query takes place.


Description

Return a non-null value to bypass WordPress’ default user queries.

Filtering functions that require pagination information are encouraged to set the total_users property of the WP_User_Query object, passed to the filter by reference. If WP_User_Query does not perform a database query, it will not have enough information to generate these values itself.


Top ↑

Parameters

$results

(array|null)Return an array of user data to short-circuit WP's user query or null to allow WP to run its normal queries.

$query

(WP_User_Query)The WP_User_Query instance (passed by reference).


Top ↑

Source

File: wp-includes/class-wp-user-query.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
5.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.