Uses
Uses | Description |
---|---|
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/class-wp-customize-control.php: WP_Customize_Control::__construct() | Constructor. |
Constructor.
(WP_Customize_Manager) (Required) Customizer bootstrap instance.
(string) (Required) Control ID.
(array) (Optional) Arguments to override class property defaults. See WP_Customize_Control::__construct() for information on accepted arguments.
Default value: array()
File: wp-includes/customize/class-wp-customize-color-control.php
public function __construct( $manager, $id, $args = array() ) { $this->statuses = array( '' => __( 'Default' ) ); parent::__construct( $manager, $id, $args ); }
Version | Description |
---|---|
3.4.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_color_control/__construct