WP_Customize_Manager::add_section() public WP 3.4.0
Add 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
Заметки
- Смотрите: WP_Customize_Section::__construct()
Список изменений
С версии 3.4.0 | Введена. |
С версии 4.5.0 | Return added WP_Customize_Section instance. |
Код WP_Customize_Manager::add_section() WP Customize Manager::add section WP 5.6
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;
}