WP HOOKS
filtrod 4.7.0

rest_pre_get_setting

Args 3Plik wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the value of a setting recognized by the REST API.

Allow hijacking the setting value and overriding the built-in behavior by returning a non-null value. The returned value will be presented as the setting value instead.

Parametry

ParametrTypOpis
$resultmixedValue to use for the requested setting. Can be a scalar matching the registered schema for the setting, or null to follow the default get_option() behavior.
$namestringSetting name (as shown in REST API responses).
$argsarrayArguments passed to register_setting() for this setting.

Wywołanie

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

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

Popularne w tej kategorii