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

remove_custom_background(): null|bool

Remove custom background support.


Description

Top ↑

See also


Top ↑

Return

null|bool Whether support was removed.


Top ↑

Source

File: wp-includes/deprecated.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
3.4.0 Use add_custom_background()
3.1.0 Introduced.

Top ↑

User Contributed Notes

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