wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_refresh_metabox_loader_nonces › WordPress Function

Since6.1.0
Deprecatedn/a
wp_refresh_metabox_loader_nonces ( $response, $data )
Parameters: (2)
  • (array) $response The Heartbeat response.
    Required: Yes
  • (array) $data The $_POST data sent.
    Required: Yes
Returns:
  • (array) The Heartbeat response.
Defined at:
Codex:

Refresh nonces used with meta boxes in the block editor.



Source

function wp_refresh_metabox_loader_nonces( $response, $data ) {
	if ( empty( $data['wp-refresh-metabox-loader-nonces'] ) ) {
		return $response;
	}

	$received = $data['wp-refresh-metabox-loader-nonces'];
	$post_id  = (int) $received['post_id'];

	if ( ! $post_id ) {
		return $response;
	}

	if ( ! current_user_can( 'edit_post', $post_id ) ) {
		return $response;
	}

	$response['wp-refresh-metabox-loader-nonces'] = array(
		'replace' => array(
			'metabox_loader_nonce' => wp_create_nonce( 'meta-box-loader' ),
			'_wpnonce'             => wp_create_nonce( 'update-post_' . $post_id ),
		),
	);

	return $response;
}