-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
32 lines (31 loc) · 973 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
32
<?php
# The footer of my theme.
?>
<footer class="layout__footer">
<div class="row align-items-center">
<div class="col-12 col-lg-5 text-center text-lg-right order-lg-3">
<div class="powered-by">Superpowered by
<a href="" class="link link_text">Wordpress</a>
</div>
</div>
<div class="col-12 col-lg-2 text-center order-lg-2">
<a href="/" class="link copyright">©</a>
</div>
<div class="col-12 col-lg-5 text-center text-lg-left order-lg-1">
<div class="social-links">
<?php
wp_nav_menu(array(
'theme_location' => 'bottom',
'container' => '',
'items_wrap' => '%3$s',
'walker' => new Eg_Bottom_Menu_Walker,
));
?>
</div>
</div>
</div>
</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>