remove_custom_background(): null|bool

This function has been deprecated. Use add_custom_background() instead.

Remove custom background support.

Description

See also

Return

null|bool Whether support was removed.

Source

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

Changelog

VersionDescription
3.4.0Use add_custom_background()
3.1.0Introduced.

User Contributed Notes

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