-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
55 lines (50 loc) · 1.97 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
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after
*
* @package WordPress
* @subpackage Twenty_Sixteen
* @since Twenty Sixteen 1.0
*/
?>
</div><!-- .site-content -->
<footer id="colophon" class="site-footer clearfix" role="contentinfo">
<div class="footer-content col-xs-12">
<?php if ( has_nav_menu( 'footer' ) ) : ?>
<nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Primary Menu', 'twentysixteen' ); ?>">
<?php
wp_nav_menu( array(
'theme_location' => 'footer',
'menu_class' => 'footer-menu',
) );
?>
</nav><!-- .main-navigation -->
<?php endif; ?>
<!-- <div class="newsletter">-->
<!-- <div>More Bedtime Stories</div>-->
<!-- <div>-->
<!-- <input type="text" disabled="disabled">-->
<!-- </div>-->
<!-- </div>-->
</div>
<div class="site-info">
<div class="year">© <?php echo date('Y'); ?></div>
<?php if ( has_nav_menu( 'signature' ) ) : ?>
<nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Signature Menu' ); ?>">
<?php
wp_nav_menu( array(
'theme_location' => 'signature',
'menu_class' => 'signature-menu',
) );
?>
</nav><!-- .main-navigation -->
<?php endif; ?>
</div><!-- .site-info -->
</footer><!-- .site-footer -->
</div><!-- .site-inner -->
</div><!-- .site -->
<?php wp_footer(); ?>
</body>
</html>