wp_auth_check_load
函数
wp_auth_check_load ( No parameters )
- 定义位置
-
-
wp-includes/functions.php
, line 7076
-
wp-includes/functions.php
- 引入
- 3.6.0
- 弃用
- –
Loads the auth check for monitoring whether the user is still logged in.
Can be disabled with remove_action( ‘admin_enqueue_scripts’, ‘wp_auth_check_load’ );
This is disabled for certain screens where a login screen could cause an
inconvenient interruption. A filter called {@see ‘wp_auth_check_load’} can be used
for fine-grained control.
function wp_auth_check_load() { if ( ! is_admin() && ! is_user_logged_in() ) { return; } if ( defined( 'IFRAME_REQUEST' ) ) { return; } $screen = get_current_screen(); $hidden = array( 'update', 'update-network', 'update-core', 'update-core-network', 'upgrade', 'upgrade-network', 'network' ); $show = ! in_array( $screen->id, $hidden, true ); /** * Filters whether to load the authentication check. * * Returning a falsey value from the filter will effectively short-circuit * loading the authentication check. * * @since 3.6.0 * * @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 ); } }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。