Checks whether a user is still logged in, for the heartbeat.
Description
Send a result that shows a log-in box if the user is no longer logged in, or if their cookie is within the grace period.
Parameters
$response
arrayrequired- The Heartbeat response.
Source
function wp_auth_check( $response ) {
$response['wp-auth-check'] = is_user_logged_in() && empty( $GLOBALS['login_grace_period'] );
return $response;
}
Changelog
Version | Description |
---|---|
3.6.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.