WP_Customize_Manager::add_section( WP_Customize_Section|string $id, array $args = array() ): WP_Customize_Section

Adds a customize section.

Description

See also

Parameters

$idWP_Customize_Section|stringrequired
Customize Section object, or ID.
$argsarrayoptional
Array of properties for the new Section object.
See WP_Customize_Section::__construct() for information on accepted arguments.

Default:array()

Return

WP_Customize_Section The instance of the section that was added.

Source

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

Changelog

VersionDescription
4.5.0Return added WP_Customize_Section instance.
3.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.