WP_Customize_Manager::add_section()publicWP 3.4.0

Adds a customize section.

Method of the class: WP_Customize_Manager{}

No Hooks.

Return

WP_Customize_Section. The instance of the section that was added.

Usage

$WP_Customize_Manager = new WP_Customize_Manager();
$WP_Customize_Manager->add_section( $id, $args );
$id(WP_Customize_Section|string) (required)
Customize Section object, or ID.
$args(array)
Array of properties for the new Section object. See WP_Customize_Section::__construct() for information on accepted arguments.
Default: empty array

Notes

Changelog

Since 3.4.0 Introduced.
Since 4.5.0 Return added WP_Customize_Section instance.

WP_Customize_Manager::add_section() code WP 6.5.2

public function add_section( $id, $args = array() ) {
	if ( $id instanceof WP_Customize_Section ) {
		$section = $id;
	} else {
		$section = new WP_Customize_Section( $this, $id, $args );
	}

	$this->sections[ $section->id ] = $section;
	return $section;
}