WP_Customize_Manager::add_panel
Adds a customize panel.
Method of the class: WP_Customize_Manager{}
No Hooks.
Returns
WP_Customize_Panel. The instance of the panel that was added.
Usage
$WP_Customize_Manager = new WP_Customize_Manager(); $WP_Customize_Manager->add_panel( $id, $args );
- $id(WP_Customize_Panel|string) (required)
- Customize Panel object, or ID.
- $args(array)
- Array of properties for the new Panel object. See WP_Customize_Panel::__construct() for information on accepted arguments.
Default:empty array
Notes
Changelog
| Since 4.0.0 | Introduced. |
| Since 4.5.0 | Return added WP_Customize_Panel instance. |
WP_Customize_Manager::add_panel() WP Customize Manager::add panel code WP 7.0
public function add_panel( $id, $args = array() ) {
if ( $id instanceof WP_Customize_Panel ) {
$panel = $id;
} else {
$panel = new WP_Customize_Panel( $this, $id, $args );
}
$this->panels[ $panel->id ] = $panel;
return $panel;
}