wpcf7_create_nonce()CF7 1.0

Creates a cryptographic token tied to a specific action, user, user session, and window of time.

Хуков нет.

Возвращает

Строку. The token.

Использование

wpcf7_create_nonce( $action );
$action(строка)
Context to what is taking place.
По умолчанию: 'wp_rest'

Код wpcf7_create_nonce() CF7 5.9.3

function wpcf7_create_nonce( $action = 'wp_rest' ) {
	return wp_create_nonce( $action );
}