W3cubDocs

/WordPress

WP_Customize_Nav_Menu_Item_Setting::amend_customize_save_response( array $data )

Export data for the JS client.

Description

See also

Parameters

$data

(array) (Required) Additional information passed back to the 'saved' event on wp.customize.

Return

(array) Save response data.

Source

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

public function amend_customize_save_response( $data ) {
		if ( ! isset( $data['nav_menu_item_updates'] ) ) {
			$data['nav_menu_item_updates'] = array();
		}

		$data['nav_menu_item_updates'][] = array(
			'post_id'          => $this->post_id,
			'previous_post_id' => $this->previous_post_id,
			'error'            => $this->update_error ? $this->update_error->get_error_code() : null,
			'status'           => $this->update_status,
		);
		return $data;
	}

Changelog

Version Description
4.3.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_customize_nav_menu_item_setting/amend_customize_save_response