-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
50 lines (47 loc) · 1.76 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
</div>
<footer class="page-footer" id="footer">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text"><?php echo get_option('footer_title'); ?></h5>
<p class="grey-text text-lighten-4"><?php echo get_option('footer_content'); ?></p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text"><?php echo get_option('footer_menuTitle'); ?></h5>
<ul>
<?php $args=array(
'theme_location' => 'footer', // nom du slug
'menu' => 'footer_fr', // nom à donner cette occurence du menu
'menu_class' => 'menu_footer', // class à attribuer au menu
'menu_id' => 'menu_id', // id à attribuer au menu
// voir les autres arguments possibles sur le codex
);
wp_nav_menu($args); ?>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<nav class="nav-copyright">
<div class="nav-wrapper">
<?php echo get_option('footer_coopyright'); ?>
<ul id="nav-mobile" class="right hide-on-small-and-down">
<?php $args=array(
'theme_location' => 'copyright', // nom du slug
'menu' => 'footer_copyright_fr', // nom à donner cette occurence du menu
'menu_class' => 'menu_footer_copyright', // class à attribuer au menu
'menu_id' => 'menu_id_copyright', // id à attribuer au menu
// voir les autres arguments possibles sur le codex
);
wp_nav_menu($args); ?>
</ul>
</div>
</nav>
</div>
</div>
</footer>
<!-- Execution de la fonction wp_footer() obligatoire ! -->
<?php wp_footer(); ?>
</body>
</html>