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.
This hook occurs 2 times in this file.
Line | Code |
---|---|
390 | </script> |
391 | <?php |
392 | } |
393 |
|
394 | /** |
395 | * Fires in the login page footer. |
396 | * |
397 | * @since 3.1.0 |
398 | */ |
399 | do_action( 'login_footer' ); |
400 |
|
401 | ?> |
402 | <div class="clear"></div> |
403 | </body> |
404 | </html> |
405 | <?php |
406 | } |
407 |
|
408 | /** |
Line | Code |
1281 | $message = '<p class="message">' . __( 'You have logged in successfully.' ) . '</p>'; |
1282 | $interim_login = 'success'; |
1283 | login_header( '', $message ); |
1284 |
|
1285 | ?> |
1286 | </div> |
1287 | <?php |
1288 |
|
1289 | /** This action is documented in wp-login.php */ |
1290 | do_action( 'login_footer' ); |
1291 |
|
1292 | if ( $customize_login ) { |
1293 | ?> |
1294 | <script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script> |
1295 | <?php |
1296 | } |
1297 |
|
1298 | ?> |
1299 | </body></html> |