-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
35 lines (30 loc) · 1.12 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
</main>
<footer>
<div class="container">
<?php
wp_nav_menu(array(
'container_class' => 'footer-navigation-container',
'depth' => 1,
'fallback_cb' => function ($args) { echo '<div></div>'; }, // Fallback to an empty div so the flex layout doesn't get messed up
'menu_id' => 'footer-navigation',
'theme_location' => 'footer-navigation'
));
?>
<div class="footer-logo-container">
<a href="<?=home_url()?>">
<img src="<?=IMAGES?>/svg/logo.svg" class="footer-logo">
</a>
</div>
<div class="footer-notice">
<p class="copyright">© <?=date('Y')?> <?php bloginfo('name'); ?></p>
</div>
</div>
<div class="fivefifteen">
<a href="https://fivefifteen.com" target="_blank" title="This website's design was built on Primer - A WordPress boilerplate theme by Five Fifteen">
<img src="<?=IMAGES?>/svg/fivefifteen.svg" class="fivefifteen-logo">
</a>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>