WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
169 | * |
170 | * @since 4.7.0 |
171 | * |
172 | * @param bool $result Whether to override the default behavior for updating the |
173 | * value of a setting. |
174 | * @param string $name Setting name (as shown in REST API responses). |
175 | * @param mixed $value Updated setting value. |
176 | * @param array $args Arguments passed to register_setting() for this setting. |
177 | */ |
178 | $updated = apply_filters( 'rest_pre_update_setting', false, $name, $request[ $name ], $args ); |
179 |
|
180 | if ( $updated ) { |
181 | continue; |
182 | } |
183 |
|
184 | /* |
185 | * A null value for an option would have the same effect as |
186 | * deleting the option from the database, and relying on the |
187 | * default value. |