-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
38 lines (29 loc) · 1.22 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
<?php
/**
* The template for displaying the footer.
*
* @package Motif
*/
?>
</div><!-- #content -->
<?php get_sidebar( 'footer' ); ?>
<footer id="colophon" class="site-footer">
<?php if ( has_nav_menu( 'secondary' ) ) : ?>
<div id="footer-navbar" class="footer-navbar">
<nav id="secondary-navigation" class="subordinate-navigation" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'secondary', 'container' => false, 'fallback_cb' => false, 'depth' => 1 ) ); ?>
</nav><!-- #secondary-navigation -->
</div><!-- #footer-navbar -->
<?php endif; ?>
<div class="site-info" role="contentinfo">
<?php do_action( 'motif_credits' ); ?>
<a href="http://wordpress.org/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', 'motif' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'motif' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( __( 'Theme: %1$s by %2$s.', 'motif' ), 'Motif', '<a href="https://wordpress.com/themes/" rel="designer">WordPress.com</a>' ); ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
</div><!-- .inner-wrapper -->
<?php wp_footer(); ?>
</body>
</html>