wpcf7_create_nonce()
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() wpcf7 create nonce CF7 5.9.8
function wpcf7_create_nonce( $action = 'wp_rest' ) { return wp_create_nonce( $action ); }