WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 4031 | return; |
| 4032 | |
| 4033 | if ( defined( 'IFRAME_REQUEST' ) ) |
| 4034 | return; |
| 4035 | |
| 4036 | $screen = get_current_screen(); |
| 4037 | $hidden = array( 'update', 'update-network', 'update-core', 'update-core-network', 'upgrade', 'upgrade-network', 'network' ); |
| 4038 | $show = ! in_array( $screen->id, $hidden ); |
| 4039 | |
| 4040 | if ( apply_filters( 'wp_auth_check_load', $show, $screen ) ) { |
| 4041 | wp_enqueue_style( 'wp-auth-check' ); |
| 4042 | wp_enqueue_script( 'wp-auth-check' ); |
| 4043 | |
| 4044 | add_action( 'admin_print_footer_scripts', 'wp_auth_check_html', 5 ); |
| 4045 | add_action( 'wp_print_footer_scripts', 'wp_auth_check_html', 5 ); |
| 4046 | } |
| 4047 | } |
| 4048 | |
| 4049 | /** |