diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php index 208a5b4891..01eeebbdbe 100644 --- a/wp-admin/includes/misc.php +++ b/wp-admin/includes/misc.php @@ -436,6 +436,8 @@ function set_screen_options() { return; break; default: + $screen_option = false; + if ( '_page' === substr( $option, -5 ) || 'layout_columns' === $option ) { /** * Filters a screen option value before it is set. @@ -451,12 +453,12 @@ function set_screen_options() { * * @see set_screen_options() * - * @param bool $keep Whether to save or skip saving the screen option value. - * Default false. - * @param string $option The option name. - * @param int $value The number of rows to use. + * @param mixed $screen_option The value to save instead of the option value. + * Default false (to skip saving the current option). + * @param string $option The option name. + * @param int $value The option value. */ - $value = apply_filters( 'set-screen-option', false, $option, $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores + $screen_option = apply_filters( 'set-screen-option', $screen_option, $option, $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores } /** @@ -470,12 +472,12 @@ function set_screen_options() { * * @see set_screen_options() * - * @param bool $keep Whether to save or skip saving the screen option value. - * Default false. - * @param string $option The option name. - * @param int $value The number of rows to use. + * @param mixed $screen_option The value to save instead of the option value. + * Default false (to skip saving the current option). + * @param string $option The option name. + * @param int $value The option value. */ - $value = apply_filters( "set_screen_option_{$option}", false, $option, $value ); + $value = apply_filters( "set_screen_option_{$option}", $screen_option, $option, $value ); if ( false === $value ) return;