whitelist_options
Deprecated from version 5.5.0. It is no longer supported and can be removed in future releases. See allowed_options.
Filters the allowed options list.
Usage
add_filter( 'whitelist_options', 'wp_kama_whitelist_options_filter', 10, 3 ); /** * Function for `whitelist_options` filter-hook. * * @param array $allowed_options The allowed options list. * @param $string * @param $condition * * @return array */ function wp_kama_whitelist_options_filter( $allowed_options, $string, $condition ){ // filter... return $allowed_options; }
- $allowed_options(array)
- The allowed options list.
- $string
- -
- $condition
- -
Changelog
Since 2.7.0 | Introduced. |
Deprecated since 5.5.0 | Use {@see 'allowed_options'} instead. |
Where the hook is called
In file: /wp-admin/options.php
whitelist_options
wp-admin/options.php 222-228
$allowed_options = apply_filters_deprecated( 'whitelist_options', array( $allowed_options ), '5.5.0', 'allowed_options', __( 'Please consider writing more inclusive code.' ) );