2008-08-11 20:26:31 +00:00
< ? php
/**
* WordPress Administration Template Footer
*
* @ package WordPress
* @ subpackage Administration
*/
2008-08-21 02:25:14 +00:00
?>
2008-08-20 21:42:31 +00:00
2008-11-21 17:55:35 +00:00
< div class = " clear " ></ div ></ div ><!-- wpbody - content -->
2008-11-28 04:33:35 +00:00
< div class = " clear " ></ div ></ div ><!-- wpbody -->
2008-11-21 17:55:35 +00:00
< div class = " clear " ></ div ></ div ><!-- wpcontent -->
2008-08-31 13:51:52 +00:00
</ div ><!-- wpwrap -->
2006-09-28 17:35:59 +00:00
< div id = " footer " >
2008-11-24 00:20:34 +00:00
< p id = " footer-left " class = " alignleft " >< ? php
2008-10-29 03:51:16 +00:00
do_action ( 'in_admin_footer' );
2007-08-17 10:33:52 +00:00
$upgrade = apply_filters ( 'update_footer' , '' );
2009-04-17 03:17:40 +00:00
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>' ) ); ?>
2008-10-21 22:27:41 +00:00
</ p >
2008-11-29 15:52:17 +00:00
< ? php // if ( $is_IE ) browse_happy(); ?>
2008-11-24 00:20:34 +00:00
< p id = " footer-upgrade " class = " alignright " >< ? php echo $upgrade ; ?> </p>
< div class = " clear " ></ div >
2004-07-23 07:50:21 +00:00
</ div >
2009-01-14 14:18:51 +00:00
< ? php
do_action ( 'admin_footer' , '' );
do_action ( 'admin_print_footer_scripts' );
2009-01-15 00:08:20 +00:00
do_action ( " admin_footer- $hook_suffix " );
2009-01-14 14:18:51 +00:00
2009-05-16 05:05:11 +00:00
// get_site_option() won't exist when auto upgrading from <= 2.7
if ( function_exists ( 'get_site_option' ) ) {
if ( false === get_site_option ( 'can_compress_scripts' ) )
compression_test ();
}
2009-01-14 14:18:51 +00:00
?>
2009-01-15 00:08:20 +00:00
2005-12-14 06:27:30 +00:00
< script type = " text/javascript " > if ( typeof wpOnload == 'function' ) wpOnload (); </ script >
2003-05-22 12:12:53 +00:00
</ body >
2009-01-14 14:18:51 +00:00
</ html >