Uses
Uses | Description |
---|---|
wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
wp-includes/class-wp-customize-section.php: WP_Customize_Section::__construct() | Constructor. |
This method has been deprecated.
Constructor.
Any supplied $args override class property defaults.
(WP_Customize_Manager) (Required) Customizer bootstrap instance.
(string) (Required) A specific ID of the section.
(array) (Optional) Section arguments.
Default value: array()
File: wp-includes/customize/class-wp-customize-new-menu-section.php
public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) { _deprecated_function( __METHOD__, '4.9.0' ); parent::__construct( $manager, $id, $args ); }
Version | Description |
---|---|
4.9.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_new_menu_section/__construct