WP_Customize_Nav_Menu_Item_Control::json() WordPress Method

The WP_Customize_Nav_Menu_Item_Control::json() method is used to generate a JSON representation of a given menu item. This is useful for creating custom menu item controls in the WordPress Customizer.

WP_Customize_Nav_Menu_Item_Control::json() #

Return parameters for this control.


Return

(array) Exported parameters.


Top ↑

Source

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

	public function json() {
		$exported                 = parent::json();
		$exported['menu_item_id'] = $this->setting->post_id;

		return $exported;
	}


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.