This function has been deprecated. Use add_allowed_options() instead. Please consider writing more inclusive code.
add_option_whitelist( array $new_options, string|array $options = '' )
Adds an array of options to the list of allowed options.
Parameters
- $new_options
-
(Required)
- $options
-
(Optional)
Default value: ''
Return
(array)
Source
File: wp-includes/deprecated.php
function add_option_whitelist( $new_options, $options = '' ) {
if ( $options == '' )
global $whitelist_options;
else
$whitelist_options = $options;
foreach ( $new_options as $page => $keys ) {
foreach ( $keys as $key ) {
if ( !isset($whitelist_options[ $page ]) || !is_array($whitelist_options[ $page ]) ) {
$whitelist_options[ $page ] = array();
$whitelist_options[ $page ][] = $key;
} else {
$pos = array_search( $key, $whitelist_options[ $page ] );
if ( $pos === false )
$whitelist_options[ $page ][] = $key;
}
}
}
return $whitelist_options;
}
Changelog
Version | Description |
---|---|
5.5.0 | Use add_allowed_options() instead.<br> Please consider writing more inclusive code. |
2.7.0 | Introduced. This function has been deprecated. Use add_allowed_options() instead. Please consider writing more inclusive code. |