Warning: This function has been deprecated. Use unregister_setting() instead.

remove_option_update_handler( string $option_group, string $option_name, callable $sanitize_callback = '' )

Unregister a setting


Description Description

See also See also


Top ↑

Parameters Parameters

$option_group

(string) (Required)

$option_name

(string) (Required)

$sanitize_callback

(callable) (Optional)

Default value: ''


Top ↑

Source Source

File: wp-admin/includes/deprecated.php

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 );
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Use unregister_setting()
2.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.