forked from silentxcode/Mini-Maker-Faire-WordPress-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
43 lines (28 loc) · 781 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
35
36
37
38
39
40
41
42
43
<div class="clear"></div>
<div class="beige">
<div class="container">
<footer>
<div class="row">
<?php dynamic_sidebar( 'footer-1' ); ?>
<?php dynamic_sidebar( 'footer-2' ); ?>
<?php dynamic_sidebar( 'footer-3' ); ?>
</div>
<div class="row">
<div class="span12">
<?php
wp_nav_menu( array(
'theme_location' => 'footer-menu',
'container' => false,
'link_before' => '<div>',
'link_after' => '</div>',
'items_wrap' => '<ul id="%1$s" class="%2$s nav nav-pills">%3$s</ul>',
) );
?>
</div>
</div>
</footer>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>