wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



remove_option_whitelist › WordPress Function

Desde2.7.0
Obsoleto5.5.0
remove_option_whitelist ( $del_options, $options = '' )
Parâmetros: (2)
  • (array) $del_options
    Required: Yes
  • (string|array) $options
    Required: No
    Padrão: (empty)
Retorna:
  • (array)
Definido em:
Codex:

Removes a list of options from the allowed options list.



Fonte

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

	return remove_allowed_options( $del_options, $options );
}