wp_ajax_rest_nonce()
Handles renewing the REST API nonce via AJAX.
No Hooks.
Returns
null. Nothing (null).
Usage
wp_ajax_rest_nonce();
Changelog
| Since 5.3.0 | Introduced. |
wp_ajax_rest_nonce() wp ajax rest nonce code WP 7.0
function wp_ajax_rest_nonce() {
exit( wp_create_nonce( 'wp_rest' ) );
}