WordPress Version: 4.6
/**
* Alias of wp_unregister_widget_control().
*
* @since 2.2.0
* @deprecated 2.8.0 Use wp_unregister_widget_control()
* @see wp_unregister_widget_control()
*
* @param int|string $id Widget ID.
*/
function unregister_widget_control($id)
{
_deprecated_function(__FUNCTION__, '2.8.0', 'wp_unregister_widget_control()');
return wp_unregister_widget_control($id);
}