-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
74 lines (67 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php if (!is_404()) : ?>
<footer>
<div class="container">
<div class="footer__container">
<div class="footer__info">
<?php
if (function_exists('the_custom_logo')) {
the_custom_logo();
}
?>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<?php
wp_nav_menu(array(
'theme_location' => 'social-menu',
'container' => 'div',
'container_id' => 'social-footer-menu',
'container_class' => 'footer__menu',
'menu_class' => 'footer__list',
'depth' => 1
));
?>
</div>
<div class="footer__col">
<span>Jevis Luxury</span>
<?php
wp_nav_menu(array(
'theme_location' => 'main-menu',
'container' => 'div',
'container_id' => 'footer-menu',
'depth' => 1
));
?>
</div>
<div class="footer__col">
<span>Legal</span>
<?php
wp_nav_menu(array(
'theme_location' => 'legal-menu',
'container' => 'div',
'container_id' => 'legal-menu',
'depth' => 1
));
?>
</div>
<div class="footer__col">
<span>Info</span>
<?php
wp_nav_menu(array(
'theme_location' => 'info-menu',
'container' => 'div',
'container_id' => 'legal-menu',
'depth' => 1
));
?>
</div>
</div>
<p class="mt-2">© <?php bloginfo('name') ?> <?php echo date("Y") ?> | All Rights Reserved.</p>
</div>
</footer>
<?php endif ?>
</main>
<?php wp_footer() ?>
</body>
</html>