auth_cookie_expired action-hook . WP 2.7.0
Fires once an authentication cookie has expired.
Usage
add_action( 'auth_cookie_expired', 'action_function_name_1723' ); function action_function_name_1723( $cookie_elements ){ // action... }
- $cookie_elements(array)
- An array of data for the authentication cookie.
Where the hook is called
auth_cookie_expired
wp-includes/pluggable.php 637
do_action( 'auth_cookie_expired', $cookie_elements );
Where the hook is used (in WP core)
wp-includes/default-filters.php 274
add_action( 'auth_cookie_expired', 'rest_cookie_collect_status' );