WP HOOKS
akcjaod 4.4.0

wp_verify_nonce_failed

Args 4Plik wp-includes/pluggable.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Fires when nonce verification fails.

Parametry

ParametrTypOpis
$noncestringThe invalid nonce.
$actionstring | intThe nonce action.
$user\WP_UserThe current user object.
$tokenstringThe user's session token.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'wp_verify_nonce_failed', 'twoja_funkcja', 10, 4 );

function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
	// Twój kod
}

Popularne w tej kategorii