wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



remove_option_whitelist › WordPress Function

Seit2.7.0
Veraltet5.5.0
remove_option_whitelist ( $del_options, $options = '' )
Parameter: (2)
  • (array) $del_options
    Erforderlich: Ja
  • (string|array) $options
    Erforderlich: Nein
    Standard: (leer)
Gibt zurück:
  • (array)
Definiert in:
Codex:

Removes a list of options from the allowed options list.



Quellcode

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

	return remove_allowed_options( $del_options, $options );
}