Warning: This function has been deprecated. Use remove_theme_support() instead.

remove_custom_image_header()

Remove image header support.


Description Description

See also See also


Top ↑

Return Return

(null|bool) Whether support was removed.


Top ↑

Source Source

File: wp-includes/deprecated.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.4.0 Use remove_theme_support()
3.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.