set-screen-option хук-фильтрWP 2.8.0

Filters a screen option value before it is set.

The filter can also be used to modify non-standard [items]_per_page settings. See the parent function for a full list of standard options.

Returning false from the filter will skip saving the current option.

Использование

add_filter( 'set-screen-option', 'wp_kama_set_screen_option_filter', 10, 3 );

/**
 * Function for `set-screen-option` filter-hook.
 * 
 * @param mixed  $screen_option The value to save instead of the option value.
 * @param string $option        The option name.
 * @param int    $value         The option value.
 *
 * @return mixed
 */
function wp_kama_set_screen_option_filter( $screen_option, $option, $value ){

	// filter...
	return $screen_option;
}
$screen_option(разное)
The value to save instead of the option value.
По умолчанию: false (to skip saving the current option)
$option(строка)
The option name.
$value(int)
The option value.

Список изменений

С версии 2.8.0 Введена.
С версии 5.4.2 Only applied to options ending with '_page', or the 'layout_columns' option.

Где вызывается хук

set_screen_options()
set-screen-option
wp-admin/includes/misc.php 774
$screen_option = apply_filters( 'set-screen-option', $screen_option, $option, $value ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

Где используется хук в WordPress

Использование не найдено.