Summery Summery
Constructor.
Syntax Syntax
Parameters Parameters
- $manager
-
(Required) Customizer bootstrap instance.
- $id
-
(Required) Control ID.
- $args
-
(Optional) Arguments to override class property defaults. See WP_Customize_Control::__construct() for information on accepted arguments.
Default value: array()
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() ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.2.0 | Moved from WP_Customize_Upload_Control. |
4.1.0 | Introduced. |