forked from tomotomo/mtportfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
45 lines (39 loc) · 1.04 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package mtportfolio
*/
?>
</div><!-- #content -->
<nav class="page-top"><a href="#"></a></nav>
<div class="footer-widget-area">
<aside class="widget footer-widget-category">
<h1>Categories</h1>
<ul><?php wp_list_categories('title_li=');?></ul>
</aside>
<aside class="widget footer-widget-tag">
<h1>Tags</h1>
<!-- <div class="tags-links"> -->
<?php mtportfolio_list_tag_links(); ?>
<!-- </div> -->
</aside>
<aside class="widget footer-widget-page">
<h1>Pages</h1>
<ul><?php wp_list_pages('title_li='); ?></ul>
</aside>
<aside class="widget footer-widget-sns">
</aside>
</div><!-- .footer-widget-area -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<?php do_action( 'mtportfolio_credits' ); ?>
Copyright(c)mtportfolio
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>