-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
42 lines (39 loc) · 1.1 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
<?php
/**
* The template for displaying the footer
*/
?>
<div id="footer-wrapper">
<footer id="colophon" class="site-footer">
<nav id="menu-footer" class="main-navigation">
<?php
wp_nav_menu(
array(
'theme_location' => 'menu-footer',
)
);
?>
</nav><!-- #menu-footer -->
<?php if ( is_active_sidebar( 'sidebar-footer-props' )): ?>
<div id="footer-props" class="widget-area">
<?php dynamic_sidebar( 'sidebar-footer-props' ); ?>
</div>
<div id="footer-branding">
<?php endif; ?><!-- #footer-props -->
<?php if ( is_active_sidebar( 'sidebar-footer-logo' )): ?>
<div id="footer-logo" class="widget-area">
<?php dynamic_sidebar( 'sidebar-footer-logo' ); ?>
</div>
<?php endif; ?><!-- #footer-logo -->
<?php if ( is_active_sidebar( 'sidebar-footer-copyright' )): ?>
<div id="footer-copyright" class="widget-area">
<?php dynamic_sidebar( 'sidebar-footer-copyright' ); ?>
</div>
<?php endif; ?><!-- #footer-copyright -->
</div>
</footer><!-- #colophon -->
</div>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>