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



add_option_whitelist › WordPress Function

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

Adds an array of options to the list of allowed options.



Quellcode

function add_option_whitelist( $new_options, $options = '' ) {
	_deprecated_function( __FUNCTION__, '5.5.0', 'add_allowed_options()' );

	return add_allowed_options( $new_options, $options );
}