Welcome, visitor! Log in
 

Source View: admin_print_footer_scripts

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.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: 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.

Source View

Line Code
14  <div class="clear"></div></div><!-- wpbody -->
15  <div class="clear"></div></div><!-- wpcontent -->
16  </div><!-- wpwrap -->
17  
18  <div id="footer">
19  <p id="footer-left" class="alignleft"><?php
20  do_action( 'in_admin_footer' );
21  $upgrade = apply_filters( 'update_footer', '' );
22  echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.').'</span> | '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>') ); ?>
23  </p>
24  <p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p>
25  <div class="clear"></div>
26  </div>
27  <?php
28  do_action('admin_footer', '');
29  do_action('admin_print_footer_scripts');
30  do_action("admin_footer-" . $GLOBALS['hook_suffix']);
31  
32  // get_site_option() won't exist when auto upgrading from <= 2.7
33  if ( function_exists('get_site_option') ) {
34       if ( false === get_site_option('can_compress_scripts') )
35            compression_test();
36  }
37  
38  ?>
39  
40  <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
41  </body>
42  </html>
43  
44