On this page
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.
Parameters
$resultsarray|null-
Return an array of user data to short-circuit WP's user query or null to allow WP to run its normal queries.
$queryWP_User_Query-
The WP_User_Query instance (passed by reference).
Source
File: wp-includes/class-wp-user-query.php. View all references
$this->results = apply_filters_ref_array( 'users_pre_query', array( null, &$this ) );
Related
Used By
| Used By | Description |
|---|---|
| WP_User_Query::query() wp-includes/class-wp-user-query.php | Executes the query, with the current variables. |
Changelog
| Version | Description |
|---|---|
| 5.1.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/users_pre_query