wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



remove_option_whitelist › WordPress Function

Od2.7.0
Przestarzały5.5.0
remove_option_whitelist ( $del_options, $options = '' )
Parametry: (2)
  • (array) $del_options
    Wymagane: Tak
  • (string|array) $options
    Wymagane: Nie
    Domyślny: (puste)
Powrót:
  • (array)
Zdefiniowane na:
Codex:

Removes a list of options from the allowed options list.



Źródło

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

	return remove_allowed_options( $del_options, $options );
}