-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
34 lines (33 loc) · 962 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
33
34
</main>
<footer>
<div class="container">
<div class="contact">
<h3>まんぷく杯運営</h3>
<div>
<a href="https://twitter.com/tenohirasize" target="_blank">
<div class="sns">
<i class="fa-brands fa-twitter"></i>
</div>
<span>大会運営チーム<br>主宰 まんぷくちゃん Twitter</span>
</a>
</div>
</div>
<?php
wp_nav_menu(
array(
'menu' => 'Footer Navigation',
'container' => 'nav',
'container_class' => 'footer-nav',
'theme_location' => 'footer-menu'
)
);
?>
</div>
<div class="copyright">
<small>© まんぷく杯運営チーム</small>
</div>
</footer>
<div id="page-top"><span></span></div>
<?php wp_footer(); ?>
</body>
</html>