rest_pre_get_setting хук-фильтрWP 4.7.0

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.

Использование

add_filter( 'rest_pre_get_setting', 'wp_kama_rest_pre_get_setting_filter', 10, 3 );

/**
 * Function for `rest_pre_get_setting` filter-hook.
 * 
 * @param mixed  $result Value 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.
 * @param string $name   Setting name (as shown in REST API responses).
 * @param array  $args   Arguments passed to register_setting() for this setting.
 *
 * @return mixed
 */
function wp_kama_rest_pre_get_setting_filter( $result, $name, $args ){

	// filter...
	return $result;
}
$result(разное)
Value 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.
$name(строка)
Setting name (as shown in REST API responses).
$args(массив)
Arguments passed to register_setting() for this setting.

Список изменений

С версии 4.7.0 Введена.

Где вызывается хук

WP_REST_Settings_Controller::get_item()
rest_pre_get_setting
wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php 98
$response[ $name ] = apply_filters( 'rest_pre_get_setting', null, $name, $args );

Где используется хук в WordPress

Использование не найдено.