wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



remove_option_whitelist › WordPress Function

Depuis2.7.0
Dépréciée5.5.0
remove_option_whitelist ( $del_options, $options = '' )
Paramètres: (2)
  • (array) $del_options
    Requis: Oui
  • (string|array) $options
    Requis: Non
    Défaut: (vide)
Retourne:
  • (array)
Défini(e) dans:
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 );
}