apply_filters( ‘wp_auth_check_load’, bool $show, WP_Screen $screen )

In this article

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

if ( apply_filters( 'wp_auth_check_load', $show, $screen ) ) {

Changelog

VersionDescription
3.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.