WP_Customize_Nav_Menu_Section WordPress Class

The WP_Customize_Nav_Menu_Section class represents a nav menu section in the Customizer. A nav menu section is a grouping of nav menu items.

WP_Customize_Nav_Menu_Section #

Customize Menu Section Class


Description

Custom section only needed in JS.

Top ↑

See also


Top ↑

Source

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

class WP_Customize_Nav_Menu_Section extends WP_Customize_Section {

	/**
	 * Control type.
	 *
	 * @since 4.3.0
	 * @var string
	 */
	public $type = 'nav_menu';

	/**
	 * Get section parameters for JS.
	 *
	 * @since 4.3.0
	 * @return array Exported parameters.
	 */
	public function json() {
		$exported            = parent::json();
		$exported['menu_id'] = (int) preg_replace( '/^nav_menu\[(-?\d+)\]/', '$1', $this->id );

		return $exported;
	}
}


Top ↑

Methods

  • json— Get section parameters for JS.

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.