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

(WP_Customize_Manager) (Required) Customizer bootstrap instance.

$id

(string) (Required) An specific ID of the section.

$args

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

Changelog
Version Description
WP-4.9.0 Introduced.