Uses
Uses | Description |
---|---|
wp-includes/class-wp-customize-panel.php: WP_Customize_Panel::__construct() | Constructor. |
Add a customize panel.
(WP_Customize_Panel|string) (Required) Customize Panel object, or ID.
(array) (Optional) Array of properties for the new Panel object. See WP_Customize_Panel::__construct() for information on accepted arguments.
Default value: array()
(WP_Customize_Panel) The instance of the panel that was added.
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; }
Version | Description |
---|---|
4.5.0 | Return added WP_Customize_Panel instance. |
4.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_manager/add_panel