remove_custom_background

函数


remove_custom_background ( No parameters )
返回值
  • (null|bool) Whether support was removed.
相关
  • add_custom_background()
定义位置
  • wp-includes/deprecated.php
    , line 3052
引入
3.1.0
弃用
3.4.0

Remove custom background support.

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