wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_refresh_post_nonces › WordPress Function

Depuis3.6.0
Dépréciéen/a
wp_refresh_post_nonces ( $response, $data, $screen_id )
Paramètres: (3)
  • (array) $response The Heartbeat response.
    Requis: Oui
  • (array) $data The $_POST data sent.
    Requis: Oui
  • (string) $screen_id The screen ID.
    Requis: Oui
Retourne:
  • (array) The Heartbeat response.
Défini(e) dans:
Codex:

Checks nonce expiration on the New/Edit Post screen and refresh if needed.



Source

function wp_refresh_post_nonces( $response, $data, $screen_id ) {
	if ( array_key_exists( 'wp-refresh-post-nonces', $data ) ) {
		$received = $data['wp-refresh-post-nonces'];

		$response['wp-refresh-post-nonces'] = array( 'check' => 1 );

		$post_id = absint( $received['post_id'] );

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

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

		$response['wp-refresh-post-nonces'] = array(
			'replace' => array(
				'getpermalinknonce'    => wp_create_nonce( 'getpermalink' ),
				'samplepermalinknonce' => wp_create_nonce( 'samplepermalink' ),
				'closedpostboxesnonce' => wp_create_nonce( 'closedpostboxes' ),
				'_ajax_linking_nonce'  => wp_create_nonce( 'internal-linking' ),
				'_wpnonce'             => wp_create_nonce( 'update-post_' . $post_id ),
			),
		);
	}

	return $response;
}