remove_custom_background()WP 3.1.0

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

Remove custom background support.

No Hooks.

Return

null|true|false. Whether support was removed.

Usage

remove_custom_background();

Notes

Changelog

Since 3.1.0 Introduced.
Deprecated since 3.4.0 Use add_custom_background()

remove_custom_background() code WP 6.5.2

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