WP_Customize_Background_Image_Control::__construct()publicWP 3.4.0

Constructor.

Method of the class: WP_Customize_Background_Image_Control{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Customize_Background_Image_Control = new WP_Customize_Background_Image_Control();
$WP_Customize_Background_Image_Control->__construct( $manager );
$manager(WP_Customize_Manager) (required)
Customizer bootstrap instance.

Changelog

Since 3.4.0 Introduced.

WP_Customize_Background_Image_Control::__construct() code WP 6.5.2

public function __construct( $manager ) {
	parent::__construct(
		$manager,
		'background_image',
		array(
			'label'   => __( 'Background Image' ),
			'section' => 'background_image',
		)
	);
}