remove_custom_image_header()WP 3.1.0

Deprecated from version 3.4.0. It is no longer supported and can be removed in future releases. Use remove_theme_support() instead.

Remove image header support.

No Hooks.

Return

null|true|false. Whether support was removed.

Usage

remove_custom_image_header();

Notes

Changelog

Since 3.1.0 Introduced.
Deprecated since 3.4.0 Use remove_theme_support()

remove_custom_image_header() code WP 6.5.2

function remove_custom_image_header() {
	_deprecated_function( __FUNCTION__, '3.4.0', 'remove_theme_support( \'custom-header\' )' );
	return remove_theme_support( 'custom-header' );
}