wp_ajax_rest_nonce() – Ajax handler to renew the REST API nonce.

You appear to be a bot. Output may be restricted

Description

Handles renewing the REST API nonce via AJAX.

Usage

wp_ajax_rest_nonce();

Parameters

Returns

void

Source

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

1 to 3 of 3
function wp_ajax_rest_nonce() {
  exit( wp_create_nonce( 'wp_rest' ) );
}
 

 View on GitHub View on Trac