-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfooter.php
executable file
·144 lines (113 loc) · 4.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<footer>
<div class="wrap">
<div class="bicolor">
<span class="azul"></span>
<span class="rojo"></span>
</div>
<div class="top">
<div class="listas">
<?php if (has_nav_menu('menu_footer_1')): ?>
<div class="lista">
<h5><?php echo get_menu_title('menu_footer_1') ?></h5>
<?php
$args = array(
'theme_location' => 'menu_footer_1',
'container' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => '',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="menu-main-menu" class="menu-main">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
wp_nav_menu( $args ); ?>
</div>
<?php endif; ?>
<?php if (has_nav_menu('menu_footer_2')): ?>
<div class="lista">
<h5><?php echo get_menu_title('menu_footer_2') ?></h5>
<?php $args = array(
'theme_location' => 'menu_footer_2',
'container' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => '',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="menu-main-menu" class="menu-main">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
wp_nav_menu( $args ); ?>
</div>
<?php endif; ?>
<?php if (has_nav_menu('menu_footer_3')): ?>
<div class="lista">
<h5><?php echo get_menu_title('menu_footer_2') ?></h5>
<?php $args = array(
'theme_location' => 'menu_footer_3',
'container' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => '',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="menu-main-menu" class="menu-main">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
wp_nav_menu( $args ); ?>
</div>
<?php endif; ?>
</div>
<div class="clearfix"></div>
<div class="sep"></div>
</div>
<div class="bottom">
<div class="left">
<span><?php echo gobcl_get_option('_gobcl_datos_contacto') ?></span>
</div>
<nav>
<?php
$args = array(
'theme_location' => 'menu_inferior',
'container' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => '',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="menu-main-menu" class="menu-main">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
wp_nav_menu( $args ); ?>
</nav>
<div class="clearfix"></div>
<div class="bicolor">
<span class="azul"></span>
<span class="rojo"></span>
</div>
</div>
</div>
</footer>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<?php wp_footer(); ?>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/main.js" ></script>
</body>
</html>