filtrreferencjaod 5.1.0
users_pre_query
Opis — z kodu źródłowego
Filters the users array before the query takes place.
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.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$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). |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'users_pre_query', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'users_pre_query', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii