wp_auth_check_load

wp_auth_check_load

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('wp_auth_check_load') is found 1 times:

  • /wp-includes/functions.php line 7360
    	 *
    	 * @param bool      $show   Whether to load the authentication check.
    	 * @param WP_Screen $screen The current screen object.
    	 */
    	if ( apply_filters( 'wp_auth_check_load', $show, $screen ) ) {
    		wp_enqueue_style( 'wp-auth-check' );
    		wp_enqueue_script( 'wp-auth-check' );
    
    		add_action( 'admin_print_footer_scripts', 'wp_auth_check_html', 5 );
    		add_action( 'wp_print_footer_scripts', 'wp_auth_check_html', 5 );
    	}