wpseek.com
WordPress开发者和主题制作者的搜索引擎



unregister_widget_control › WordPress Function

Since2.2.0
已弃用2.8.0
unregister_widget_control ( $id )
参数:
  • (int|string) $id Widget ID.
    Required: Yes
查看:
定义在:
文档:

Alias of wp_unregister_widget_control().



源码

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