unregister_widget_control( int|string $id )

This function has been deprecated. Use wp_unregister_widget_control() instead.

Alias of wp_unregister_widget_control() .

Description

See also

Parameters

$idint|stringrequired
Widget ID.

Source

function unregister_widget_control($id) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'wp_unregister_widget_control()' );
	return wp_unregister_widget_control($id);
}

Changelog

VersionDescription
2.8.0Use wp_unregister_widget_control()
2.2.0Introduced.

User Contributed Notes

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