WP_Customize_Manager::add_section() WordPress Method

The add_section() method allows you to dynamically add sections to the Customizer. This is useful for adding new fields to the Customizer without having to hard-code them into your theme.

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

Adds a customize section.


Description

Top ↑

See also


Top ↑

Parameters

$id

(WP_Customize_Section|string)(Required)Customize Section object, or ID.

$args

(array)(Optional) Array of properties for the new Section object. See WP_Customize_Section::__construct() for information on accepted arguments.

Default value: array()


Top ↑

Return

(WP_Customize_Section) The instance of the section that was added.


Top ↑

Source

File: wp-includes/class-wp-customize-manager.php

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


Top ↑

Changelog

Changelog
VersionDescription
4.5.0Return added WP_Customize_Section instance.
3.4.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