WP_Customize_Media_Control::__construct( WP_Customize_Manager $manager, string $id, array $args = array() )

Constructor.


Description Description


Parameters Parameters

$manager

(WP_Customize_Manager) (Required) Customizer bootstrap instance.

$id

(string) (Required) Control ID.

$args

(array) (Optional) Arguments to override class property defaults.

Default value: array()


Top ↑

Source Source

File: wp-includes/customize/class-wp-customize-media-control.php

	public function __construct( $manager, $id, $args = array() ) {
		parent::__construct( $manager, $id, $args );

		$this->button_labels = wp_parse_args( $this->button_labels, $this->get_default_button_labels() );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.2.0 Moved from WP_Customize_Upload_Control.
4.1.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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