unregister_widget_control

The timeline below displays how wordpress function unregister_widget_control has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

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

WordPress Version: 4.4

/**
 * 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', 'wp_unregister_widget_control()');
    return wp_unregister_widget_control($id);
}

WordPress Version: 3.7

/**
 * Alias of {@link wp_unregister_widget_control()}.
 *
 * @since 2.2.0
 * @deprecated 2.8.0
 * @deprecated 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', 'wp_unregister_widget_control()');
    return wp_unregister_widget_control($id);
}