-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
32 lines (27 loc) · 760 Bytes
/
footer.php
File metadata and controls
32 lines (27 loc) · 760 Bytes
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
<footer id="footer-container">
<p id="copyright-information">
Copyright © <?php echo esc_html( date( 'Y' ) ); ?> <?php bloginfo( 'name' ); ?>. All Rights Reserved.
</p>
<?php
wp_nav_menu( array(
'theme_location' => 'footer_links',
'menu' => 'footer_links',
'container' => '',
'container_class' => '',
'container_id' => '',
'menu_class' => '',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="footer-navigation" class="%2$s">%3$s</ul>',
'depth' => 0,
) );
?>
</footer>
<?php wp_footer(); ?>
</body>
</html>