-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
33 lines (29 loc) · 886 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
</div><!-- #main -->
<div id="footer">
<div class="footer-column">
<?php dynamic_sidebar('footer-column-a'); ?>
</div>
<div class="footer-column">
<?php dynamic_sidebar('footer-column-b'); ?>
</div>
<div class="footer-column">
<?php dynamic_sidebar('footer-column-c'); ?>
</div>
<div class="copyright"><p>© <?php bloginfo('name');?> <?php echo date('Y');?> All rights reserved. <a href="http://www.slimtheme.com/lean">The Lean Theme</a> by <a href="http://zhiyan.de">DUAN Zhiyan</a></p>
<?php
$menu = array(
'theme_location' => 'Footer',
'container' => false,
'menu_class' => 'menu-footer',
'menu_id' => 'menu-footer',
//'walker' => new MainNavWalker(),
'fallback_cb' => '',
);
wp_nav_menu( $menu );
?>
</div>
</div>
</div><!-- #wrap -->
<?php wp_footer();?>
</body>
</html>