-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
31 lines (28 loc) · 820 Bytes
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* Template for displaying the footer
*
* Contains the closing of <main> and all content after
*
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/
?>
</main>
<footer id=colophon>
<?php
/*
* A sidebar in the footer? Yep. You can customize
* your footer with three columns of widgets.
*/
if ( ! is_404() )
get_sidebar( 'footer' );
?>
<div id=site-generator>
<?php do_action( 'twentyeleven_credits' ); ?>
<a href=<?php echo esc_url( __( 'https://wordpress.org/', 'twentyeleven' ) ); ?> title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>