WP_Customize_Background_Image_Control::__construct( WP_Customize_Manager $manager )

Constructor.


Parameters

$manager WP_Customize_Manager Required
Customizer bootstrap instance.

Top ↑

Source

File: wp-includes/customize/class-wp-customize-background-image-control.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
3.4.0 Introduced.

Top ↑

User Contributed Notes

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