WP_Customize_Nav_Menu_Section::json() WordPress Method

The WP_Customize_Nav_Menu_Section::json() method is used to return the data for this section in JSON format. This data is used to make changes to the menu section via the Customizer API.

WP_Customize_Nav_Menu_Section::json() #

Get section parameters for JS.


Return

(array) Exported parameters.


Top ↑

Source

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

	public function json() {
		$exported            = parent::json();
		$exported['menu_id'] = (int) preg_replace( '/^nav_menu\[(-?\d+)\]/', '$1', $this->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.