This function has been deprecated. Use add_custom_background() instead.
remove_custom_background()
Remove custom background support.
Description
See also
Return
(null|bool) Whether support was removed.
Source
File: wp-includes/deprecated.php
function remove_custom_background() {
_deprecated_function( __FUNCTION__, 'WP-3.4.0', 'remove_theme_support( \'custom-background\' )' );
return remove_theme_support( 'custom-background' );
}
Changelog
Version | Description |
---|---|
3.4.0 | Use add_custom_background() |
3.1.0 | Introduced. This function has been deprecated. Use add_custom_background() instead. |