wp_verify_nonce_failed

wp_verify_nonce_failed

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('wp_verify_nonce_failed') is found 1 times:

  • /wp-includes/pluggable.php line 2399
    2395
    2396
    2397
    2398
    2399
    2400
    2401
    2402
    2403
    2404
             * @param string|int $action The nonce action.
             * @param WP_User    $user   The current user object.
             * @param string     $token  The user's session token.
             */
            do_action( 'wp_verify_nonce_failed', $nonce, $action, $user, $token );
     
            // Invalid nonce.
            return false;
        }
    endif;