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-color-control.php
public function __construct( $manager, $id, $args = array() ) { $this->statuses = array( '' => __( 'Default' ) ); parent::__construct( $manager, $id, $args ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |