WP_Customize_Nav_Menu_Item_Control::__construct() WordPress Method

The WP_Customize_Nav_Menu_Item_Control::__construct() method is used to create a new customizer control for a nav menu item. This control allows you to modify the properties of a nav menu item, such as the label, URL, and title.

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

Constructor.


Description

Top ↑

See also


Top ↑

Parameters

$manager

(WP_Customize_Manager)(Required)Customizer bootstrap instance.

$id

(string)(Required)The control ID.

$args

(array)(Optional) Arguments to override class property defaults. See WP_Customize_Control::__construct() for information on accepted arguments.

Default value: array()


Top ↑

Source

File: wp-includes/customize/class-wp-customize-nav-menu-item-control.php

	public function __construct( $manager, $id, $args = array() ) {
		parent::__construct( $manager, $id, $args );
	}


Top ↑

Changelog

Changelog
VersionDescription
4.3.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.