remove_custom_background()
Deprecated since 3.4.0. It is no longer supported and may be removed in future releases. Use add_custom_background() instead.
Remove custom background support.
No Hooks.
Returns
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() remove custom background code WP 7.0
function remove_custom_background() {
_deprecated_function( __FUNCTION__, '3.4.0', 'remove_theme_support( \'custom-background\' )' );
return remove_theme_support( 'custom-background' );
}