rest_pre_get_setting WordPress Filter Hook

The "rest_pre_get_setting" hook is called before retrieving a setting from the REST API. This hook can be used to modify the setting before it is retrieved.

apply_filters( 'rest_pre_get_setting', mixed $result, string $name, array $args ) #

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


Description

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.


Top ↑

Parameters

$result

(mixed)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

(string)Setting name (as shown in REST API responses).

$args

(array)Arguments passed to register_setting() for this setting.


Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.