Usage
add_action( 'auth_cookie_bad_session_token', 'your_callback_function', 10, 1 );Action Callback:
function your_callback_function( $cookie_elements ) {
// Your code here
}Parameters
$cookie_elementsParameter 1
⚡ Action Hook
Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.