-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
footer.php
42 lines (37 loc) · 1.21 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
<footer class="footer-main bg-primary">
<div class="bg-primary pt-4 pb-3">
<div class="container text-center text-white">
<nav class="footer-navbar navbar navbar-dark">
<?php
wp_nav_menu(array(
'theme_location' => 'footer_navigation',
'depth' => 1,
'menu_class' => 'nav m-auto small text-center',
'fallback_cb' => 'WP_Bootstrap_Navwalker::fallback',
'walker' => new WP_Bootstrap_Navwalker()
));
?>
</nav>
<div class="row">
<div class="col">
<p><small>© <?php echo bloginfo('name'); ?> <?php echo date('Y'); ?> All Rights Reserved</small></p>
</div>
</div>
<nav class="footer-navbar navbar navbar-dark">
<?php
wp_nav_menu(array(
'theme_location' => 'legal_navigation',
'depth' => 1,
'menu_class' => 'nav m-auto small text-center',
'fallback_cb' => 'WP_Bootstrap_Navwalker::fallback',
'walker' => new WP_Bootstrap_Navwalker()
));
?>
</nav>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</div>
</body>
</html>