Uses
Uses | Description |
---|---|
wp-includes/class-wp-customize-section.php: WP_Customize_Section::__construct() | Constructor. |
Add a customize section.
(WP_Customize_Section|string) (Required) Customize Section object, or ID.
(array) (Optional) Array of properties for the new Section object. See WP_Customize_Section::__construct() for information on accepted arguments.
Default value: array()
(WP_Customize_Section) The instance of the section that was added.
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; }
Version | Description |
---|---|
4.5.0 | Return added WP_Customize_Section instance. |
3.4.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_manager/add_section