WP_Customize_Manager::add_panel() WordPress Method

The WP_Customize_Manager::add_panel() method allows you to add a new panel to the Customizer. This panel will be given a priority based on its position in the Customizer (top-most panel is given the highest priority).

WP_Customize_Manager::add_panel( WP_Customize_Panel|string $id, array $args = array() ) #

Adds a customize panel.


Description

Top ↑

See also


Top ↑

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()


Top ↑

Return

(WP_Customize_Panel) The instance of the panel that was added.


Top ↑

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;
	}


Top ↑

Changelog

Changelog
VersionDescription
4.5.0Return added WP_Customize_Panel instance.
4.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More