forked from obenland/the-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
43 lines (40 loc) · 1.51 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/** footer.php
*
* @author Konstantin Obenland
* @package The Bootstrap
* @since 1.0.0 - 05.02.2012
*/
tha_footer_before(); ?>
<footer id="colophon" role="contentinfo" class="span12">
<?php tha_footer_top(); ?>
<div id="page-footer" class="well clearfix">
<?php wp_nav_menu( array(
'container' => 'nav',
'container_class' => 'subnav',
'theme_location' => 'footer-menu',
'menu_class' => 'credits nav nav-pills pull-left',
'depth' => 3,
'fallback_cb' => 'the_bootstrap_credits',
'walker' => new The_Bootstrap_Nav_Walker,
) );
?>
<div id="site-generator"<?php echo has_nav_menu('footer-menu') ? ' class="footer-nav-menu"' : ''; ?>>
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'the-bootstrap' ) ); ?>"
title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'the-bootstrap' ); ?>"
target="_blank"
rel="generator"><?php printf( _x( 'Proudly powered by %s', 'WordPress', 'the-bootstrap' ), 'WordPress' ); ?></a>
</div>
</div><!-- #page-footer .well .clearfix -->
<?php tha_footer_bottom(); ?>
</footer><!-- #colophon -->
<?php tha_footer_after(); ?>
</div><!-- #page -->
</div><!-- .container -->
<!-- <?php printf( __( '%d queries. %s seconds.', 'the-bootstrap' ), get_num_queries(), timer_stop(0, 3) ); ?> -->
<?php wp_footer(); ?>
</body>
</html>
<?php
/* End of file footer.php */
/* Location: ./wp-content/themes/the-bootstrap/footer.php */