WP HOOKS
filtrod 5.0.0

wp_rest_search_handlers

Args 1Plik wp-includes/rest-api.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the search handlers to use in the REST search controller.

Parametry

ParametrTypOpis
$search_handlersarrayList 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
}

Popularne w tej kategorii