wpseek.com
A WordPress-centric search engine for devs and theme authors



remove_option_whitelist › WordPress Function

Since2.7.0
Deprecated5.5.0
remove_option_whitelist ( $del_options, $options = '' )
Parameters: (2)
  • (array) $del_options
    Required: Yes
  • (string|array) $options
    Required: No
    Default: (empty)
Returns:
  • (array)
Defined at:
Codex:

Removes a list of options from the allowed options list.



Source

function remove_option_whitelist( $del_options, $options = '' ) {
	_deprecated_function( __FUNCTION__, '5.5.0', 'remove_allowed_options()' );

	return remove_allowed_options( $del_options, $options );
}