WP_Customize_New_Menu_Control::__construct( WP_Customize_Manager $manager, string $id, array $args = array() )
Constructor.
Description Description
Parameters Parameters
- $manager
-
(WP_Customize_Manager) (Required) Manager.
- $id
-
(string) (Required) ID.
- $args
-
(array) (Optional) Args.
Default value: array()
Source Source
File: wp-includes/customize/class-wp-customize-new-menu-control.php
public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) { _deprecated_file( basename( __FILE__ ), '4.9.0' ); // @todo Move this outside of class, and remove its require_once() from class-wp-customize-control.php. See #42364. parent::__construct( $manager, $id, $args ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.9.0 | Introduced. |