-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
31 lines (28 loc) · 902 Bytes
/
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
<div class="container-fluid">
<div class="row" id="myfooterbox">
<div class="container">
<p class="copyright">
<?php
echo get_theme_mod('copyright_text');
?>
</p>
<nav class="footer_nav pull-right">
<?php
wp_nav_menu(array(
'theme_location'=>'footer_menu',
'menu_class'=>'site_nav',
'fallback_cb'=>'wp_bootstrap_navwalker::fallback',
'walker'=> new wp_bootstrap_navwalker()
));
?>
</nav>
</div>
</div>
</div><!-- end of footer -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="<?php echo get_template_directory_uri(); ?>/js/bootstrap.min.js"></script>
<?php wp_footer(); ?>
</body>
</html>