2010-03-29 22:03:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 17:04:10 +00:00
|
|
|
* Template for displaying the footer
|
2010-03-29 22:03:15 +00:00
|
|
|
*
|
|
|
|
* Contains the closing of the id=main div and all content
|
2011-12-16 17:13:16 +00:00
|
|
|
* after. Calls sidebar-footer.php for bottom widgets.
|
2010-03-29 22:03:15 +00:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 17:10:21 +00:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 06:36:11 +00:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-29 22:03:15 +00:00
|
|
|
*/
|
|
|
|
?>
|
2010-02-07 16:16:26 +00:00
|
|
|
</div><!-- #main -->
|
2010-02-08 17:59:08 +00:00
|
|
|
|
2010-05-10 21:10:12 +00:00
|
|
|
<div id="footer" role="contentinfo">
|
2010-02-07 16:16:26 +00:00
|
|
|
<div id="colophon">
|
2010-02-08 17:59:08 +00:00
|
|
|
|
2010-05-17 06:36:11 +00:00
|
|
|
<?php
|
2013-10-09 20:39:09 +00:00
|
|
|
/*
|
2013-09-25 17:04:10 +00:00
|
|
|
* A sidebar in the footer? Yep. You can can customize
|
2010-05-17 06:36:11 +00:00
|
|
|
* your footer with four columns of widgets.
|
|
|
|
*/
|
|
|
|
get_sidebar( 'footer' );
|
|
|
|
?>
|
2010-02-08 17:59:08 +00:00
|
|
|
|
2010-02-07 16:16:26 +00:00
|
|
|
<div id="site-info">
|
2015-01-22 00:42:44 +00:00
|
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
|
2010-05-09 09:29:06 +00:00
|
|
|
<?php bloginfo( 'name' ); ?>
|
|
|
|
</a>
|
2010-05-21 18:56:27 +00:00
|
|
|
</div><!-- #site-info -->
|
2010-02-08 17:59:08 +00:00
|
|
|
|
2010-02-07 16:16:26 +00:00
|
|
|
<div id="site-generator">
|
2013-09-25 17:04:10 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Fires before the Twenty Ten credits in the footer.
|
|
|
|
*
|
|
|
|
* @since Twenty Ten 1.0
|
|
|
|
*/
|
|
|
|
do_action( 'twentyten_credits' ); ?>
|
2015-04-27 17:36:25 +00:00
|
|
|
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyten' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a>
|
2010-05-21 18:56:27 +00:00
|
|
|
</div><!-- #site-generator -->
|
2010-02-08 17:59:08 +00:00
|
|
|
|
2010-02-07 16:16:26 +00:00
|
|
|
</div><!-- #colophon -->
|
|
|
|
</div><!-- #footer -->
|
2010-02-08 17:59:08 +00:00
|
|
|
|
|
|
|
</div><!-- #wrapper -->
|
2010-02-07 16:16:26 +00:00
|
|
|
|
2010-05-21 18:56:27 +00:00
|
|
|
<?php
|
2013-10-09 20:39:09 +00:00
|
|
|
/*
|
2013-09-25 17:04:10 +00:00
|
|
|
* Always have wp_footer() just before the closing </body>
|
2010-05-21 18:56:27 +00:00
|
|
|
* tag of your theme, or you will break many plugins, which
|
|
|
|
* generally use this hook to reference JavaScript files.
|
|
|
|
*/
|
2010-02-07 16:16:26 +00:00
|
|
|
|
2010-05-21 18:56:27 +00:00
|
|
|
wp_footer();
|
|
|
|
?>
|
2010-02-07 16:16:26 +00:00
|
|
|
</body>
|
|
|
|
</html>
|