WP HOOKS
filtrod 5.9.0

rest_prepare_url_details

Args 4Plik wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the URL data for the response.

Parametry

ParametrTypOpis
$response\WP_REST_ResponseThe response object.
$urlstringThe requested URL.
$request\WP_REST_RequestRequest object.
$remote_url_responsestringHTTP response body from the remote URL.

Wywołanie

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

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

Popularne w tej kategorii