filtrod 5.0.0
wp_rest_search_handlers
Opis — z kodu źródłowego
Filters the search handlers to use in the REST search controller.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$search_handlers | array | List of search handlers to use in the controller. Each search handler instance must extend the <code>WP_REST_Search_Handler</code> class. Default is only a handler for posts. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'wp_rest_search_handlers', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'wp_rest_search_handlers', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii