WP_Customize_Manager::add_section()publicWP 3.4.0

Adds a customize section.

Метод класса: WP_Customize_Manager{}

Хуков нет.

Возвращает

WP_Customize_Section. The instance of the section that was added.

Использование

$WP_Customize_Manager = new WP_Customize_Manager();
$WP_Customize_Manager->add_section( $id, $args );
$id(WP_Customize_Section|строка) (обязательный)
Customize Section object, or ID.
$args(массив)
Array of properties for the new Section object. See WP_Customize_Section::__construct() for information on accepted arguments.
По умолчанию: empty array

Заметки

Список изменений

С версии 3.4.0 Введена.
С версии 4.5.0 Return added WP_Customize_Section instance.

Код WP_Customize_Manager::add_section() WP 6.4.3

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