wpseek.com
A WordPress-centric search engine for devs and theme authors



unregister_widget_control › WordPress Function

Since2.2.0
Deprecated2.8.0
unregister_widget_control ( $id )
Parameters:
  • (int|string) $id Widget ID.
    Required: Yes
See:
Defined at:
Codex:

Alias of wp_unregister_widget_control().



Source

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