WordPress Version: 6.5
/**
* Removes a list of options from the allowed options list.
*
* @since 2.7.0
* @deprecated 5.5.0 Use remove_allowed_options() instead.
* Please consider writing more inclusive code.
*
* @param array $del_options
* @param string|array $options
* @return array
*/
function remove_option_whitelist($del_options, $options = '')
{
_deprecated_function(__FUNCTION__, '5.5.0', 'remove_allowed_options()');
return remove_allowed_options($del_options, $options);
}