wp_auth_check_load WordPress Filter Hook

The wp_auth_check_load hook is called when the user is authenticated. It allows you to load a specific user or set of users into the current user session. This can be useful if you need to authenticate a user against a remote system.

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.


Top ↑

Parameters

$show

(bool)Whether to load the authentication check.

$screen

(WP_Screen)The current screen object.


Top ↑

Source

File: wp-includes/functions.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
3.6.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More