WP_Customize_Manager::add_control( WP_Customize_Control|string $id, array $args = array() )
Adds a customize control.
Description
See also
Parameters
- $id
-
(Required) Customize Control object, or ID.
- $args
-
(Optional) Array of properties for the new Control object.<br> See WP_Customize_Control::__construct() for information on accepted arguments.
Default value: array()
Return
(WP_Customize_Control) The instance of the control that was added.
Source
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;
}
Changelog
Version | Description |
---|---|
4.5.0 | Return added WP_Customize_Control instance. |
3.4.0 | Introduced. |