Uses
Uses | Description |
---|---|
wp-includes/class-wp-customize-control.php: WP_Customize_Control::__construct() | Constructor. |
Add a customize control.
(WP_Customize_Control|string) (Required) Customize Control object, or ID.
(array) (Optional) Array of properties for the new Control object. See WP_Customize_Control::__construct() for information on accepted arguments.
Default value: array()
(WP_Customize_Control) The instance of the control that was added.
File: wp-includes/class-wp-customize-manager.php
public function add_control( $id, $args = array() ) { if ( $id instanceof WP_Customize_Control ) { $control = $id; } else { $control = new WP_Customize_Control( $this, $id, $args ); } $this->controls[ $control->id ] = $control; return $control; }
Version | Description |
---|---|
4.5.0 | Return added WP_Customize_Control instance. |
3.4.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_manager/add_control