Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_pre_update_setting

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

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.