wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



remove_option_whitelist › WordPress Function

Da2.7.0
Deprecato5.5.0
remove_option_whitelist ( $del_options, $options = '' )
Parametri: (2)
  • (array) $del_options
    Richiesto:
  • (string|array) $options
    Richiesto: No
    Default: (vuoto)
Ritorna:
  • (array)
Definito a:
Codex:

Removes a list of options from the allowed options list.



Sorgenti

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

	return remove_allowed_options( $del_options, $options );
}