WP_Customize_Manager::add_panel( WP_Customize_Panel|string $id, array $args = array() )
Add a customize panel.
Contents
Description Description
See also See also
Parameters Parameters
- $id
-
(WP_Customize_Panel|string) (Required) Customize Panel object, or ID.
- $args
-
(array) (Optional) Array of properties for the new Panel object. See WP_Customize_Panel::__construct() for information on accepted arguments.
Default value: array()
Return Return
(WP_Customize_Panel) The instance of the panel that was added.
Source Source
File: wp-includes/class-wp-customize-manager.php
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; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.5.0 | Return added WP_Customize_Panel instance. |
4.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Example usage: