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 |
|---|---|
| 154 | * |
| 155 | * @since 4.7.0 |
| 156 | * |
| 157 | * @param bool $result Whether to override the default behavior for updating the |
| 158 | * value of a setting. |
| 159 | * @param string $name Setting name (as shown in REST API responses). |
| 160 | * @param mixed $value Updated setting value. |
| 161 | * @param array $args Arguments passed to register_setting() for this setting. |
| 162 | */ |
| 163 | $updated = apply_filters( 'rest_pre_update_setting', false, $name, $request[ $name ], $args ); |
| 164 | |
| 165 | if ( $updated ) { |
| 166 | continue; |
| 167 | } |
| 168 | |
| 169 | /* |
| 170 | * A null value for an option would have the same effect as |
| 171 | * deleting the option from the database, and relying on the |
| 172 | * default value. |