add_option_whitelist( array $new_options, string|array $options = '' )
Adds an array of options to the list of allowed options.
Parameters
- $new_options
-
(array) (Required)
- $options
-
(string|array) (Optional)
Default value: ''
Return
(array)
Source
File: wp-includes/deprecated.php
function add_option_whitelist( $new_options, $options = '' ) { _deprecated_function( __FUNCTION__, '5.5.0', 'add_allowed_options()' ); return add_allowed_options( $new_options, $options ); }
Expand full source code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
5.5.0 | Use add_allowed_options() instead. Please consider writing more inclusive code. |
2.7.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Here’s a nice little tutorial that uses add_option_wp_whitelist: http://wpmututorials.com/how-to/writing-plugins/