3
* WordPress Administration Template Footer
6
* @subpackage Administration
10
if ( !defined('ABSPATH') )
14
<div class="clear"></div></div><!-- wpbody-content -->
15
<div class="clear"></div></div><!-- wpbody -->
16
<div class="clear"></div></div><!-- wpcontent -->
21
* Fires after the opening tag for the admin footer.
25
do_action( 'in_admin_footer' );
27
<p id="footer-left" class="alignleft">
29
$text = sprintf( __( 'Thank you for creating with <a href="%s">WordPress</a>.' ), __( 'https://wordpress.org/' ) );
31
* Filter the "Thank you" text displayed in the admin footer.
35
* @param string $text The content that will be printed.
37
echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . $text . '</span>' );
40
<p id="footer-upgrade" class="alignright">
43
* Filter the version/update text displayed in the admin footer.
45
* WordPress prints the current version and update information,
46
* using core_update_footer() at priority 10.
50
* @see core_update_footer()
52
* @param string $content The content that will be printed.
54
echo apply_filters( 'update_footer', '' );
57
<div class="clear"></div>
61
* Print scripts or data before the default footer scripts.
65
* @param string $data The data to print.
67
do_action( 'admin_footer', '' );
70
* Prints any scripts and data queued for the footer.
74
do_action( 'admin_print_footer_scripts' );
77
* Print scripts or data after the default footer scripts.
79
* The dynamic portion of the hook name, $GLOBALS['hook_suffix'],
80
* refers to the global hook suffix of the current page.
84
* @param string $hook_suffix The current admin page.
86
do_action( "admin_footer-" . $GLOBALS['hook_suffix'] );
88
// get_site_option() won't exist when auto upgrading from <= 2.7
89
if ( function_exists('get_site_option') ) {
90
if ( false === get_site_option('can_compress_scripts') )
96
<div class="clear"></div></div><!-- wpwrap -->
97
<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>