On this page
apply_filters( 'wp_auth_check_load', bool $show, WP_Screen $screen )
Filters whether to load the authentication check.
Description
Returning a falsey value from the filter will effectively short-circuit loading the authentication check.
Parameters
$showbool-
Whether to load the authentication check.
$screenWP_Screen-
The current screen object.
Source
File: wp-includes/functions.php. View all references
if ( apply_filters( 'wp_auth_check_load', $show, $screen ) ) {
Related
Used By
| Used By | Description |
|---|---|
| wp_auth_check_load() wp-includes/functions.php | Loads the auth check for monitoring whether the user is still logged in. |
Changelog
| Version | Description |
|---|---|
| 3.6.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/wp_auth_check_load