mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
43 lines
1.5 KiB
PHP
43 lines
1.5 KiB
PHP
<?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 */
|