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()


Top ↑

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 );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.9.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.