wp_ajax_update_widget() – Ajax handler for saving a widget.

You appear to be a bot. Output may be restricted

Description

Handles updating a widget via AJAX.

Usage

wp_ajax_update_widget();

Parameters

Returns

void

Source

File name: wordpress/wp-admin/includes/ajax-actions.php
Lines:

1 to 4 of 4
function wp_ajax_update_widget() {
  global $wp_customize;
  $wp_customize->widgets->wp_ajax_update_widget();
}
 

 View on GitHub View on Trac