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'));
}
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.
/**
* Handles renewing the REST API nonce via AJAX.
*
* @since 5.3.0
*/
function wp_ajax_rest_nonce()
{
exit(wp_create_nonce('wp_rest'));
}
/**
* Ajax handler to renew the REST API nonce.
*
* @since 5.3.0
*/
function wp_ajax_rest_nonce()
{
exit(wp_create_nonce('wp_rest'));
}