Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: login_footer

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
428           <?php
429           wp_print_inline_script_tag( wp_remove_surrounding_empty_script_tags( ob_get_clean() ) );
430      }
431
432      /**
433       * Fires in the login page footer.
434       *
435       * @since 3.1.0
436       */
437      do_action( 'login_footer' );
438
439      ?>
440      </body>
441      </html>
442      <?php
443 }
444
445 /**
446  * Outputs the JavaScript to handle the form shaking on the login page.
 
Line Code
1351                     $message       = '<p class="message">' . __( 'You have logged in successfully.' ) . '</p>';
1352                     $interim_login = 'success';
1353                     login_header( '', $message );
1354
1355                     ?>
1356                     </div>
1357                     <?php
1358
1359                     /** This action is documented in wp-login.php */
1360                     do_action( 'login_footer' );
1361
1362                     if ( $customize_login ) {
1363                          ob_start();
1364                          ?>
1365                          <script>setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script>
1366                          <?php
1367                          wp_print_inline_script_tag( wp_remove_surrounding_empty_script_tags( ob_get_clean() ) );
1368                     }
1369