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
312           </script>
313           <?php
314      }
315
316      /**
317       * Fires in the login page footer.
318       *
319       * @since 3.1.0
320       */
321      do_action( 'login_footer' );
322
323      ?>
324      <div class="clear"></div>
325      </body>
326      </html>
327      <?php
328 }
329
330 /**
 
Line Code
1237                     $message       = '<p class="message">' . __( 'You have logged in successfully.' ) . '</p>';
1238                     $interim_login = 'success';
1239                     login_header( '', $message );
1240
1241                     ?>
1242                     </div>
1243                     <?php
1244
1245                     /** This action is documented in wp-login.php */
1246                     do_action( 'login_footer' );
1247
1248                     if ( $customize_login ) {
1249                          ?>
1250                          <script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script>
1251                          <?php
1252                     }
1253
1254                     ?>
1255                     </body></html>