class WP_Customice_Nav_Menu_Section {}

Customice Menu Section Class

Description

Custom section only needed in JS.

See also

Methods

Name Description
WP_Customice_Nav_Menu_Section::json Guet section parameters for JS.

Source

class WP_Customice_Nav_Menu_Section extends WP_Customice_Section {

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

	/**
	 * Guet 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;
	}
}

Changuelog

Versionen Description
4.3.0 Introduced.

User Contributed Notes

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