This method has been deprecated.
WP_Customize_New_Menu_Section::__construct( WP_Customize_Manager $manager, string $id, array $args = array() )
Constructor.
Description
Any supplied $args override class property defaults.
Parameters
- $manager
-
(Required) Customizer bootstrap instance.
- $id
-
(Required) A specific ID of the section.
- $args
-
(Optional) Section arguments.
Default value: array()
Source
File: wp-includes/customize/class-wp-customize-new-menu-section.php
public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) {
_deprecated_file( basename( __FILE__ ), 'WP-4.9.0' ); // @todo Move this outside of class in WP-5.0, and remove its require_once() from class-wp-customize-section.php. See https://core.trac.wordpress.org/ticket/42364.
parent::__construct( $manager, $id, $args );
}
Changelog
Version | Description |
---|---|
4.9.0 | Introduced. This method has been deprecated. |