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
385           </script>
386           <?php
387      }
388
389      /**
390       * Fires in the login page footer.
391       *
392       * @since 3.1.0
393       */
394      do_action( 'login_footer' );
395
396      ?>
397      <div class="clear"></div>
398      </body>
399      </html>
400      <?php
401 }
402
403 /**
 
Line Code
1271                     $message       = '<p class="message">' . __( 'You have logged in successfully.' ) . '</p>';
1272                     $interim_login = 'success';
1273                     login_header( '', $message );
1274
1275                     ?>
1276                     </div>
1277                     <?php
1278
1279                     /** This action is documented in wp-login.php */
1280                     do_action( 'login_footer' );
1281
1282                     if ( $customize_login ) {
1283                          ?>
1284                          <script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script>
1285                          <?php
1286                     }
1287
1288                     ?>
1289                     </body></html>