forked from vektor-inc/biz-vektor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
68 lines (63 loc) · 1.33 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
<?php
/**
* The template for displaying the footer.
*/
?>
</div><!-- #main -->
<!-- [ #footerSection ] -->
<div id="footerSection">
<div id="pagetop">
<div id="pagetopInner" class="innerBox">
<a href="#wrap">PAGETOP</a>
</div>
</div>
<div id="footMenu">
<div id="footMenuInner" class="innerBox">
<?php wp_nav_menu( array(
'theme_location' => 'FooterNavi',
'fallback_cb' => ''
) ); ?>
</div>
</div>
<!-- [ #footer ] -->
<div id="footer">
<!-- [ #footerInner ] -->
<div id="footerInner" class="innerBox">
<dl id="footerOutline">
<dt><?php biz_vektor_footerSiteName(); ?></dt>
<dd>
<?php biz_vektor_print_footContact(); ?>
</dd>
</dl>
<!-- [ #footerSiteMap ] -->
<div id="footerSiteMap">
<?php wp_nav_menu(
array(
'theme_location' => 'FooterSiteMap',
'fallback_cb' => ''
) ); ?>
</div>
<!-- [ /#footerSiteMap ] -->
</div>
<!-- [ /#footerInner ] -->
</div>
<!-- [ /#footer ] -->
<!-- [ #siteBottom ] -->
<div id="siteBottom">
<div id="siteBottomInner" class="innerBox">
<?php biz_vektor_footerCopyRight(); ?>
</div>
</div>
<!-- [ /#siteBottom ] -->
</div>
<!-- [ /#footerSection ] -->
</div>
<!-- [ /#wrap ] -->
<?php wp_footer();?>
<!-- GooglePlusOne -->
<script type="text/javascript" src="https://apis.google.com/js/plusone.js">
{lang: 'ja'}
</script>
<!-- /GooglePlusOne -->
</body>
</html>