remove_custom_image_header

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

WordPress Version: 4.6

/**
 * Remove image header support.
 *
 * @since 3.1.0
 * @deprecated 3.4.0 Use remove_theme_support()
 * @see remove_theme_support()
 *
 * @return null|bool Whether support was removed.
 */
function remove_custom_image_header()
{
    _deprecated_function(__FUNCTION__, '3.4.0', 'remove_theme_support( \'custom-header\' )');
    return remove_theme_support('custom-header');
}

WordPress Version: 4.4

/**
 * Remove image header support.
 *
 * @since 3.1.0
 * @deprecated 3.4.0 Use remove_theme_support()
 * @see remove_theme_support()
 *
 * @return null|bool Whether support was removed.
 */
function remove_custom_image_header()
{
    _deprecated_function(__FUNCTION__, '3.4', 'remove_theme_support( \'custom-header\' )');
    return remove_theme_support('custom-header');
}

WordPress Version: 4.1

/**
 * Remove image header support.
 *
 * @since 3.1.0
 * @deprecated 3.4.0
 * @deprecated Use remove_theme_support('custom-header')
 * @see remove_theme_support()
 *
 * @return null|bool Whether support was removed.
 */
function remove_custom_image_header()
{
    _deprecated_function(__FUNCTION__, '3.4', 'remove_theme_support( \'custom-header\' )');
    return remove_theme_support('custom-header');
}

WordPress Version: 3.7

/**
 * Remove image header support.
 *
 * @since 3.1.0
 * @deprecated 3.4.0
 * @deprecated Use remove_theme_support('custom-header')
 * @see remove_theme_support()
 *
 * @return bool Whether support was removed.
 */
function remove_custom_image_header()
{
    _deprecated_function(__FUNCTION__, '3.4', 'remove_theme_support( \'custom-header\' )');
    return remove_theme_support('custom-header');
}