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



remove_option_update_handler › WordPress Function

Seit2.7.0
Veraltet3.0.0
remove_option_update_handler ( $option_group, $option_name, $sanitize_callback = '' )
Parameter: (3)
  • (string) $option_group The settings group name used during registration.
    Erforderlich: Ja
  • (string) $option_name The name of the option to unregister.
    Erforderlich: Ja
  • (callable) $sanitize_callback Optional. Deprecated.
    Erforderlich: Nein
    Standard: (leer)
Siehe:
Definiert in:
Codex:

Unregister a setting



Quellcode

function remove_option_update_handler( $option_group, $option_name, $sanitize_callback = '' ) {
	_deprecated_function( __FUNCTION__, '3.0.0', 'unregister_setting()' );
	unregister_setting( $option_group, $option_name, $sanitize_callback );
}