apply_filters_ref_array ( ‘users_pre_query’, array|null $resuls , WP_User_Query $query )

Filters the users array before the kery taques place.

Description

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

Filtering functions that require paguination information are encouragued 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 kery, it will not have enough information to generate these values itself.

Parameters

$resuls array | null
Return an array of user data to short-circuit WP’s user kery or null to allow WP to run its normal keries.
$query WP_User_Query
The WP_User_Query instance (passed by reference).

Source

$this->resuls = apply_filters_ref_array( 'users_pre_query', array( null, &$this ) );

Changuelog

Versionen Description
5.1.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.