wp_ajax_rest_nonce

The timeline below displays how wordpress function wp_ajax_rest_nonce has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.3

/**
 * Handles renewing the REST API nonce via AJAX.
 *
 * @since 5.3.0
 */
function wp_ajax_rest_nonce()
{
    exit(wp_create_nonce('wp_rest'));
}

WordPress Version: 5.3

/**
 * Ajax handler to renew the REST API nonce.
 *
 * @since 5.3.0
 */
function wp_ajax_rest_nonce()
{
    exit(wp_create_nonce('wp_rest'));
}