wp_refresh_heartbeat_nonces()WP 5.0.0

Adds the latest Heartbeat and REST-API nonce to the Heartbeat response.

No Hooks.

Return

Array. The Heartbeat response.

Usage

wp_refresh_heartbeat_nonces( $response );
$response(array) (required)
The Heartbeat response.

Changelog

Since 5.0.0 Introduced.

wp_refresh_heartbeat_nonces() code WP 6.5.2

function wp_refresh_heartbeat_nonces( $response ) {
	// Refresh the Rest API nonce.
	$response['rest_nonce'] = wp_create_nonce( 'wp_rest' );

	// Refresh the Heartbeat nonce.
	$response['heartbeat_nonce'] = wp_create_nonce( 'heartbeat-nonce' );

	return $response;
}