WP_Customize_Background_Image_Control::__construct()publicWP 3.4.0

Constructor.

Метод класса: WP_Customize_Background_Image_Control{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Customize_Background_Image_Control = new WP_Customize_Background_Image_Control();
$WP_Customize_Background_Image_Control->__construct( $manager );
$manager(WP_Customize_Manager) (обязательный)
Customizer bootstrap instance.

Список изменений

С версии 3.4.0 Введена.

Код WP_Customize_Background_Image_Control::__construct() WP 6.5.2

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