WP_Customize_New_Menu_Section::__construct( WP_Customize_Manager $manager, string $id, array $args = array() )

In this article

This method has been deprecated.

Constructor.

Description

Any supplied $args override class property defaults.

Parameters

$managerWP_Customize_Managerrequired
Customizer bootstrap instance.
$idstringrequired
A specific ID of the section.
$argsarrayoptional
Section arguments.

Default:array()

Source

public function __construct( WP_Customize_Manager $manager, $id, array $args = array() ) {
	_deprecated_function( __METHOD__, '4.9.0' );
	parent::__construct( $manager, $id, $args );
}

Changelog

VersionDescription
4.9.0Introduced.

User Contributed Notes

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