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 |
---|---|
307 | </script> |
308 | <?php |
309 | } |
310 |
|
311 | /** |
312 | * Fires in the login page footer. |
313 | * |
314 | * @since 3.1.0 |
315 | */ |
316 | do_action( 'login_footer' ); |
317 |
|
318 | ?> |
319 | <div class="clear"></div> |
320 | </body> |
321 | </html> |
322 | <?php |
323 | } |
324 |
|
325 | /** |
Line | Code |
1297 | $message = '<p class="message">' . __( 'You have logged in successfully.' ) . '</p>'; |
1298 | $interim_login = 'success'; |
1299 | login_header( '', $message ); |
1300 |
|
1301 | ?> |
1302 | </div> |
1303 | <?php |
1304 |
|
1305 | /** This action is documented in wp-login.php */ |
1306 | do_action( 'login_footer' ); |
1307 |
|
1308 | if ( $customize_login ) { |
1309 | ?> |
1310 | <script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script> |
1311 | <?php |
1312 | } |
1313 |
|
1314 | ?> |
1315 | </body></html> |