WP HOOKS
filtrod 4.7.0

rest_request_after_callbacks

Args 3Plik wp-includes/rest-api/class-wp-rest-server.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the response immediately after executing any REST API callbacks.

Allows plugins to perform any needed cleanup, for example, to undo changes made during the {@see 'rest_request_before_callbacks'} filter. Note that this filter will not be called for requests that fail to authenticate or match to a registered route. Note that an endpoint's permission_callback can still be called after this filter - see rest_send_allow_header().

Parametry

ParametrTypOpis
$response\WP_REST_Response | \WP_HTTP_Response | \WP_Error | mixedResult to send to the client. Usually a WP_REST_Response or WP_Error.
$handlerarrayRoute handler used for the request.
$request\WP_REST_RequestRequest used to generate the response.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'rest_request_after_callbacks', 'twoja_funkcja', 10, 3 );

function twoja_funkcja($param_1, $param_2, $param_3) {
	// Twój kod
}

Popularne w tej kategorii